-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (79 loc) · 3.89 KB
/
index.html
File metadata and controls
85 lines (79 loc) · 3.89 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, intial scale=1.0">
<!-- Links and Scripts-->
<link rel="stylesheet" href="portfolio.css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<!-- Title-->
<title>Preston Doris</title>
</head>
<body>
<header>
<section class="container head-container">
<section class="top-header">
<img class="logo" src="images/udacity.svg" alt="Udacity logo">
<div class="name-title">
<h1>Preston Doris</h1>
<h4>Full Stack Web Developer</h4>
</div>
</section>
</section>
</header>
<main>
<section class="container hero-image">
<img class="hero-image" src="images/hero.jpg" alt="HTML code on a computer screen. An image by: Sai Kiran Anagani on Unsplash">
</section>
<section class="container">
<section class="featured-work">
<h2>Featured Work</h2>
<section class="tiles">
<!-- TODO: add remaining projects to tiles-->
<a href="https://github.com/prestondoris/fullStackWebDevNano/tree/master/Make%20Classes/movies">
<figure class="tile" id="movie-trailer">
<div class="image-container">
<img class="tile-image" src="images/movie-trailer.png" alt="Movie Trailer Website Landing Page">
</div>
<h3>Movie Trailer Website</h3>
<p>
A database driven site that displays some of my
favorite movies and gives access to the movie
trailer by clicking on the specific movie.
</p>
</figure>
</a>
<a href="https://github.com/prestondoris/fullStackWebDevNano">
<figure class="tile" id="logs-analysis">
<div class="image-container">
<img class="tile-image" src="images/item-catalog.png" alt="Catalog item list">
</div>
<h3>Item Catalog</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing
elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua.
</p>
</figure>
</a>
<a href="https://github.com/prestondoris/fullStackWebDevNano">
<figure class="tile" id="neighborhood-map">
<div class="image-container">
<img class="tile-image" src="images/neighborhood.jpg" alt="Satlelite view of the US">
</div>
<h3>Neighbohood Map</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing
elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua.
</p>
</figure>
</a>
</section>
</section>
</section>
</main>
<footer></footer>
</body>
</html>