-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
42 lines (42 loc) · 1.29 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Niño Mollaneda | Programmer</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700|Ubuntu:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>Niño Mollaneda</h1>
<h2>Programmer</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html" class="selected">Contact</a></li>
</ul>
</nav>
</header>
<div id="wrap">
<section id="primary">
<h3>General Information</h3>
<p>I am currently looking for projects! So please contact me if you are interested in working with me.</p>
</section>
<section id="secondary">
<h3>Contact Details</h3>
<ul class="contact-info">
<li class="mail"><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</section>
<footer>
<p>© 2014 Niño Mollaneda.</p>
</footer>
</div>
</body>
</html>