-
Notifications
You must be signed in to change notification settings - Fork 616
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (56 loc) · 1.72 KB
/
index.html
File metadata and controls
66 lines (56 loc) · 1.72 KB
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
<!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>
<nav>
<h1>Deusseimon Arcinue</h1>
<h2>Aspiring Electrical/Software Engineer</h2>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<section class="tagline">
<div class="content-wrapper">
<h3>Summary</h3>
<p>Hi guys! I am a college gradaute from San Diego State University!
Currently, I enjoy learning programming from <a target="_blank" href="https://www.codeschool.com">Code School</a>!</p>
</div>
</section>
<section class="skills">
<div class="content-wrapper">
<h3>Skills</h3>
<p>Here are some of the technologies I have learned from CodeSchool:</p>
<ul>
<li>HTML & CSS</li>
<li>Node.js</li>
<li>React</li>
<li>Angular 2</li>
<li>MongoDB</li>
<li>Webpack</li>
</ul>
</div>
</section>
<section class="contact">
<div class="content-wrapper">
<h3>Contact</h3>
<p>Feel free to contact me via email: <a target="_blank" href="dzgarcinue@gmail.com">dzgarcinue@gmail.com</a></p>
</div>
</section>
</main>
<footer>
<div 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>
</div>
</footer>
</body>
</html>