forked from kangarooo/site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
28 lines (27 loc) · 695 Bytes
/
contact.html
File metadata and controls
28 lines (27 loc) · 695 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>site</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<h1>site</h1>
</header>
<nav class="menu">
<ul class="menu--items">
<li class="menu--item"><a class="menu--link" href="index.html">main</a></li>
<li class="menu--item"><a class="menu--link" href="about.html">about us</a></li>
<li class="menu--item">contact us</li>
</ul>
</nav>
<main class="main">
<h2></h2>
</main>
<footer class="footer">
© 2016 Jan Kos
</footer>
<script src="script.js"></script>
</body>
</html>