-
Notifications
You must be signed in to change notification settings - Fork 632
/
Copy pathindex.html
81 lines (52 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
<link rel="stylesheet" href="main.css">
<title>HTML Portfolio</title>
</head>
<body>
<header>
<h1>Sergio Cruvz</h1>
<h2>Application Developer</h2>
<nav>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</header>
<main class="content-wrapper">
<section class="tagline">
<h3>A bit more about me</h3>
<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>
</section>
</main>
<main class="content-wrapper">
<section class="skills">
<h3>Skills</h3>
<p>Here are some of the technologies I enjoy writing day-to-day:</p>
<ul>
<li>HTML & CSS</li>
<li>Node.js</li>
<li>React</li>
<li>Angular 2</li>
<li>Webpack</li>
</ul>
</section>
</main>
<main class="content-wrapper">
<section class="contact">
<h3>How to contact me</h3>
<p>The easiest way to contact me is via twitter: <a target="_blank" href="https://twitter.com/hashtagserg">@hashtagserg</a></p>
</section>
</main>
<footer>
<main class="content-wrapper">
<h3>Credits</h3>
<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>
</main>
</footer>
</body>
</html>