-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (84 loc) · 4.54 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
98
99
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>David Acosta's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"></head>
<body>
<header id="top">
<h1 class="name">David Acosta</h1>
<div class="main-nav clearfix">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="header-container clearfix">
<img src="images/daftpunktocat-thomas.gif" alt="Picture of me" class="profile-image col">
<p class="introduction col">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>
<main class="wrapper clearfix" id="portfolio">
<h2 class="portfolio-title">Portfolio</h2>
<div class="project p1">
<!-- Div - Image - Headline - Paragraph -->
<img src="images/portfolio-1.png" alt="Project 1" class="project-image">
<h3 class="project-title">Marketing Page</h3>
<p class="project-text">This project shows the front page of a marketing website meant for a specific business I'm interested in.</p>
</div>
<div class="project p2">
<!-- Div - Image - Headline - Paragraph -->
<img src="images/portfolio-2.png" alt="Project 2" class="project-image">
<h3 class="project-title">Search Page</h3>
<p class="project-text">This project searches through a specific database to find information that the user is trying to look up.</p>
</div>
<div class="project p3">
<!-- Div - Image - Headline - Paragraph -->
<img src="images/portfolio-3.png" alt="Project 3" class="project-image">
<h3 class="project-title">Travel App</h3>
<p class="project-text">This project compares travel times based on different transportation methods and tells you the best one.</p>
</div>
<div class="project p4">
<!-- Div - Image - Headline - Paragraph -->
<img src="images/portfolio-4.png" alt="Project 4" class="project-image">
<h3 class="project-title">Map of Favorite Spots</h3>
<p class="project-text">This project uses mapping apis to plot points for my favorite spots in the city for a do-it-yourself walking tour.</p>
</div>
<div class="project p5">
<!-- Div - Image - Headline - Paragraph -->
<img src="images/portfolio-5.png" alt="Project 5" class="project-image">
<h3 class="project-title">Photo Gallery</h3>
<p class="project-text">This project shows pictures from a recent trip to the viewer and allows them to easily navigate throuhg photos.</p>
</div>
<div class="project p6">
<!-- Div - Image - Headline - Paragraph -->
<img src="images/portfolio-6.png" alt="Project 6" class="project-image">
<h3 class="project-title">Calculator</h3>
<p class="project-text">Someone can enter in the numbers they want, and press the big blue button and get the result.</p>
</div>
</main>
<div class="contact-section" id="contact">
<h2 class="contact-title">Contact</h2>
<p class="contact-text">If you're interested in chatting or want more information about what I've been woking on, I'd love to hear form you!</p>
<div class="contact-info">
<p class="phone">Phone <a class="contact-phone phone-number" > <strong>+1 (111) 555-1234</strong></a></p><br />
<p class="email">Email <a class="contact-email email"> <b>[email protected]</b></a></p>
</div>
</div>
<hr class="line-break"/>
<footer class="footer-container clearfix">
<p class="footer-name">David Acosta</p>
<a class="footer-link" href="#top">Back to Top</a>
<ul class="footer-nav">
<li><a href="#top">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</footer>
</body>
</html>