-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPuppies.html
80 lines (63 loc) · 2.39 KB
/
Puppies.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<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>Rollesby Weatens</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style-4.css">
</head>
<body>
<div class="container">
<div id="mySidebar" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="index.html">Home</a>
<a href="About-the-Breed.html">About the Breed</a>
<a href="Gallery.html">Gallery</a>
<a href="Puppies.html">Puppies</a>
<a href="Puppy-Updates.html">Puppy Updates</a>
<a href="Owner-Feedback.html">Owner Feedback</a>
<a href="Contact-us.html">Contact Us</a>
</div>
</div>
<div class="sidebar">
<!-- <div id="mySidebar" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
</div> -->
<img src="Logo.png">
<a href="index.html">Home</a>
<a href="About-the-Breed.html">About the Breed</a>
<a href="Gallery.html">Gallery</a>
<a href="Puppies.html">Puppies</a>
<a href="Puppy-Updates.html">Puppy Updates</a>
<a href="Owner-Feedback.html">Owner Feedback</a>
<a href="Contact-us.html">Contact Us</a>
</div>
<div id="main">
<header>
<button class="openbtn" onclick="openNav()">☰ Menu</button>
<img src="Logo.png">
</header>
<!-- <button class="openbtn" onclick="openNav()">☰ Menu</button> -->
<h1>Puppies</h1>
<h3></h3>
<p><p>
</div>
</div>
</body>
<footer>
<h4>©Charley Ensor 2023</h4>
</footer>
</html>
<script>
/* Set the width of the sidebar to 250px and the left margin of the page content to 250px */
function openNav() {
document.getElementById("mySidebar").style.width = "100%";
}
/* Set the width of the sidebar to 0 and the left margin of the page content to 0 */
function closeNav() {
document.getElementById("mySidebar").style.width = "0";
}
</script>