-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
63 lines (53 loc) · 1.78 KB
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The small farm</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/navresponsive.css">
<!--<link rel="stylesheet" href="css/navbar.css"> -->
</head>
<body>
<header>
<span id="MenuActive" onclick="openNav()">Contact ☰</span>
<div id="NavBar" class="overlay">
<a href="#x" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a id="ItemHome" href="index.html" onclick="closeNav()">Home</a>
<a id="ItemShop" href="shop.html" onclick="closeNav()">Shop</a>
<a id="ItemActivities" href="activities.html" onclick="closeNav()">Activities</a>
<a id="ItemContact" href="#contact" onclick="closeNav()">Contact</a>
</div>
</div>
<!--
<nav>
<ul class="navbar">
<li>
<a class="activenav" href="#home">Home</a>
</li>
<li>
<a href="#shop">Shop</a>
</li>
<li>
<a href="activities.html">Activities</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
-->
</header>
<!--
Here we insert the necessary blocks for page design
-->
<footer class="site-footer">
<div class="footer-body">
© Stanislav Starishko
</div>
</footer>
<script src="scripts/navigation.js"> </script>
</body>
</html>