-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
39 lines (39 loc) · 1.17 KB
/
Index.html
File metadata and controls
39 lines (39 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Matahi Historical Society homepage</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<!-- Here is our main header that is used across all the pages of our website -->
<header class="header">
<h1>Matahi Historical Society</h1>
</header>
<nav class="topnav">
<a href="#" class="topnav">Home</a></li>
<a href="#" class="topnav">Browse photos</a></li>
<a href="#" class="topnav">Submit photos</a></li>
<a href="#" class="topnav">Contact</a></li>
</nav>
<!-- Here is our page's main content -->
<main>
<div class="row">
<div class="column">
<h2>Column 1</h2>
<p>Paragraph 1.</p>
<p>Paragraph 2.</p>
</div>
<div class="column">
<h2>Column 2</h2>
<p>Paragraph 1.</p>
<p>Paragraph 2.</p>
</div>
</div>
</main>
<!-- And here is our main footer that is used across all the pages of our website -->
<footer class="footer">
<p>©Copyright 2018 by Matahi Historical Society. All rights reversed.</p>
</footer>
</body>
</html>