-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (62 loc) · 3.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Wayne's Portfolio</title>
<link rel="icon" type="image/png" sizes="16x16" href="./assets/images/icons_logos/favicon01/favicon-16x16.png" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,400i,900,900i" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="./assets/css/main.css" />
</head>
<body>
<!--
Wayne Watson Udacity FEND - Project 01 - Portfolio Site
July 10, 2018
-->
<!--
credit to youtube video to help organize portfolio page and class names.
by Joe Mesot
https://www.youtube.com/watch?v=4_CxusDXxqk&t=1645s
-->
<header class="header">
<div class="header-logo">
<img src="./assets/images/icons_logos/W-Logo01.png" alt="Wayne Watson Logo" class="header-img" />
</div>
<div class="header-text">
<h1 class="header-name text-hdr">Wayne Watson</h1>
<p class="header-title">Udacity Front-End Web Development Student</p>
</div>
</header>
<div class="breakline"></div>
<main class="content">
<img srcset="./assets/images/hero-480w.jpg 480w, ./assets/images/hero-960w.jpg 960w, ./assets/images/hero-1920w.jpg 1920w" sizes="100vw" src="./assets/images/hero-480w.jpg" alt="Portfolio Hero Image" class="hero-img responsive-img" />
<section class="featured-work">
<h2 class="content-hdr text-hdr">Featured Work</h2>
<div class="featured">
<div class="featured-item">
<img srcset="./assets/images/appify-480w.jpg 480w, ./assets/images/appify-960w.jpg 960w, ./assets/images/appify-1920w.jpg 1920w" sizes="100vw" src="./assets/images/appify-480w.jpg" alt="Featured Image One" class="featured-img responsive-img" />
<h3 class="featured-title text-hdr">Appify</h3>
<p class="featured-text">
<a href="" class="featured-link">http://www.udacity.com/appify01</a>
</p>
</div>
<div class="featured-item">
<img srcset="./assets/images/sunflower-480w.jpg 480w, ./assets/images/sunflower-960w.jpg 960w, ./assets/images/sunflower-1920w.jpg 1920w" sizes="100vw" src="./assets/images/sunflower-480w.jpg" alt="Featured Image Two" class="featured-img responsive-img" />
<h3 class="featured-title text-hdr">Sunflower</h3>
<p class="featured-text">
<a href="" class="featured-link">http://www.udacity.com/sunflowers</a>
</p>
</div>
<div class="featured-item">
<img srcset="./assets/images/bokeh-480w.jpg 480w, ./assets/images/bokeh-960w.jpg 960w, ./assets/images/bokeh-1920w.jpg 1920w" sizes="100vw" src="./assets/images/bokeh-480w.jpg" alt="Featured Image Three" class="featured-img responsive-img" />
<h3 class="featured-title text-hdr">Bokeh</h3>
<p class="featured-text">
<a href="" class="featured-link">http://www.udacity.com/bokeh</a>
</p>
</div>
</div>
</section>
</main>
</body>
</html>