-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (90 loc) · 3.91 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css?family=Roboto:400" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<title>Responsive Layout Portfolio</title>
</head>
<nav>
<h1><a href="#">Student Name</a></h1>
<ul class="top-nav">
<li><a href="#">home</a></li>
<li><a href="#portfolio">portfolio</a></li>
<li><a href="#skills">skills</a></li>
<li><a href="#contact">contact</a></li>
</ul>
</nav>
<header>
<div id="main-header">
<img id="item-1" src="images/responsive-layout-profile.png" alt="Profile Picture">
<p id="item-2">Hi! I'm a front-end developer who loves responsive design and css. I recently finished a degree in front-end web development at Treehouse and am excited to put all my skills to use!</p>
</div>
</header>
<div id="portfolio">
<h3>Portfolio</h3>
</div>
<div class="container">
<div class="col box-1">
<img src="images/portfolio-1.png" alt="Marketing Page">
<h3>Marketing Page</h3>
<p>This project shows the front page of a marketing website meant for a specific business I'm interested in. </p>
</div>
<div class="col box-2">
<img src="images/portfolio-2.png" alt="Search Page">
<h3>Search Page</h3>
<p>This project searches through a specific database to find information that the user is trying to look up. </p>
</div>
<div class="col box-3">
<img src="images/portfolio-3.png" alt="Travel App">
<h3>Travel App</h3>
<p>This project compares travel times based on different transportation methods and tells you the best one.</p>
</div>
<div class="col box-4">
<img src="images/portfolio-4.png" alt="Map of Favorite Spots">
<h3>Map of Favorite Spots</h3>
<p>This project uses mapping apis to plot points for my favorite spots in the cityfor a do-it-yourself walking tour.</p>
</div>
<div class="col box-5">
<img src="images/portfolio-5.png" alt="Photo Gallery">
<h3>Photo Gallery</h3>
<p>This project shows pictures from a recent trip to the viewer and allows them to easily navigate through photos. </p>
</div>
<div class="col box-6">
<img src="images/portfolio-6.png" alt="Calculator">
<h3>Calculator</h3>
<p>Someone can enter in the numbers they want, and press the big blue button and get the result.</p>
</div>
</div>
<section id="skills">
<h3>Skills</h3>
<p>I have learned some great skills that I can use on any project.</p>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
</section>
<section id="contact">
<h3>Contact</h3>
<p>I'f you're interested in chatting or want more information about what I've been working on, I'd love to hear from you!</p>
<p>Phone <strong>+1(111)555-1234</strong></p>
<p>Email <strong>[email protected]</strong></p>
</section>
<footer>
<h2>Student Name</h2>
<ul class="footer-nav">
<li class="top"><a href="#top">back to top</a></li>
<li class="full"><a href="#top">home</a></li>
<li class="full"><a href="#portfolio">portfolio</a></li>
<li class="full"><a href="#contact">contact</a></li>
<li class="full"><a href="#skills">skills</a></li>
</ul>
</footer>
</body>
</html>