-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (114 loc) · 4.7 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!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>Responsive Layout Project</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,800" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav class="top-bar cf">
<div class="upper-label">
<h1>Mike Tallerico</h1>
</div>
<div class="main-nav">
<ul>
<li><a href="#header">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>
</div>
</nav>
<header id="header" class="cf">
<img src="images/responsive-layout-profile.png" alt="Profile Image of Mike Tallerico">
<p>
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 pull all my skills to use!
</p>
</header>
<section id="portfolio" class="main-section cf">
<h2>PORTFOLIO</h2>
<div class="first col">
<img src="images/portfolio-1.png" alt="First Portfolio Image">
<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="second col">
<img src="images/portfolio-2.png" alt="First Portfolio Image">
<h3>Search Page</h3>
<p>This project shows through a specific database to find information
that the user is trying to look up.
</p>
</div>
<div class="third col">
<img src="images/portfolio-3.png" alt="First Portfolio Image">
<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="fourth col">
<img src="images/portfolio-4.png" alt="First Portfolio Image">
<h3>Map of Favorite Spots</h3>
<p>This project uses mapping API's to plot points for my favorite spots in the city for a
do-it-yourself walking tour.
</p>
</div>
<div class="fifth col">
<img src="images/portfolio-5.png" alt="First Portfolio Image">
<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="sixth col">
<img src="images/portfolio-6.png" alt="First Portfolio Image">
<h3>Calculator</h3>
<p>Someone can enter in the numbers they want, and press the big blue
button and get the result.
</p>
</div>
</section>
<section id="skills" class="main-section cf">
<h2>SKILLS</h2>
<p>I am a continual learner and so my list of skills are expanding daily. I plan on learning node.js in the coming
months as well as getting familiar with some frameworks like react. I also plan on understanding progressive web apps in
better detail.
</p>
<ul class="skills-list">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Adobe Creative Suite</li>
</ul>
</section>
<footer id="contact">
<div class="container">
<h2>CONTACT</h2>
<p>If 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 <span class="footer-text">(845)337-8141</span></p>
<p>Email <span class="footer-text">mike@talleri.co</span></p>
</div>
<nav class="lower-nav">
<div class="lower-label">
<h2>Mike Tallerico</h2>
</div>
<ul>
<li class="lg-link"><a href="#header">HOME</a></li>
<li class="lg-link"><a href="#portfolio">PORTFOLIO</a></li>
<li class="lg-link"><a href="#skills">SKILLS</a></li>
<li class="lg-link"><a href="#contact">CONTACT</a></li>
<li class="btt"><a href="#header">BACK TO TOP</a></li>
</ul>
</nav>
</footer>
</body>
</html>