Skip to content

Commit d916fc5

Browse files
authored
1 parent 4cc53c8 commit d916fc5

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

index.html

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
7+
<link rel="stylesheet" href="main.css">
8+
<title>HTML Portfolio</title>
9+
</head>
10+
11+
<body>
12+
13+
<header>
14+
<h1>Sergio Cruz</h1>
15+
<h2>Application Developer</h2>
16+
17+
<nav>
18+
<ul>
19+
<li><a href="index.html" class="active">Home</a></li>
20+
<li><a href="about.html">About</a></li>
21+
</ul>
22+
</nav>
23+
</header>
24+
25+
<div class = "Main Content">
26+
<section class="tagline">
27+
<div class="content-wrapper">
28+
<h3>A bit more about me</h3>
29+
<p>Hey I am Sergio, I work for <a target="_blank" href="https://www.codeschool.com">Code School</a> and I love writing JavaScript!</p>
30+
</div>
31+
</section>
32+
33+
34+
<section class="skills">
35+
<div class="content-wrapper">
36+
<h3>Skills</h3>
37+
<p>Here are some of the technologies I enjoy writing day-to-day:</p>
38+
<ul>
39+
<li>HTML &amp; CSS</li>
40+
<li>Node.js</li>
41+
<li>React</li>
42+
<li>Angular 2</li>
43+
<li>Webpack</li>
44+
</ul>
45+
</div>
46+
</section>
47+
48+
<section class="contact">
49+
<div class="content-wrapper">
50+
<h3>How to contact me</h3>
51+
<p>The easiest way to contact me is via twitter: <a target="_blank" href="https://twitter.com/hashtagserg">@hashtagserg</a></p>
52+
</div>
53+
</section>
54+
</div>
55+
56+
<footer>
57+
<div class="content-wrapper">
58+
<h3>Credits</h3>
59+
<p>This portfolio was created using <a href="https://www.codeschool.com">Code School's</a> <a href="https://github.com/codeschool/SemanticHTMLPortfolioProject">Semantic HTML Portfolio Project</a> template.</p>
60+
</div>
61+
</footer>
62+
63+
</body>
64+
65+
</html>

0 commit comments

Comments
 (0)