forked from ojsam77/R2P2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShop.html
More file actions
70 lines (68 loc) · 2.67 KB
/
Shop.html
File metadata and controls
70 lines (68 loc) · 2.67 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/R2P2.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>R2P2 Shop</title>
</head>
<body class="jquery-ripples">
<nav role="navigation" class="nav-menu-wrapper-three w-clearfix w-nav-menu">
<a href="#" class="button-primary w-button">Book Now</a>
</div>
</nav>
<div class="logo"><a href="index.html"><img src="./src/assets/R2P2Logo.png" alt="R2P2Logo"></a></div>
<nav class="navbar">
<a onclick=showSidebar() href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li><a href="Abouts%20Us.html">About Us</a></li>
<li><a href="Services.html">Services</a></li>
<li><a href="index.html">Testimonal</a></li>
<li><a href="Schedule.html">Schedule</a></li>
<li><a href="Learn.html">Learn</a></li>
<li><a href="Shop.html">Shop</a></li>
</ul>
</div>
<ul class ="sidebar">
<li onclick=hideSidebar()><a href="#"><svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24" fill="#646cff"><path d="m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z"/></svg></a></li>
<li><a href="Abouts%20Us.html">About Us</a></li>
<li><a href="Services.html">Services</a></li>
<li><a href="index.html">Testimonal</a></li>
<li><a href="Schedule.html">Schedule</a></li>
<li><a href="Learn.html">Learn</a></li>
<li><a href="Shop.html">Shop</a></li>
</ul>
</nav>
<div class="content">
<h1>Shop</h1>
<div class="status"><p>Site Under Construction...</p></div>
</div>
<script type="module" src="/src/main.jsx"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="jquery.ripples.js"></script>
<script>
$(document).ready(function() {
$('body').ripples({
resolution: 512,
dropRadius: 20,
perturbance: 0.04
});
});
</script>
<script>
function showSidebar(){
const sidebar = document.querySelector('.sidebar')
sidebar.style.display = 'flex'
}
function hideSidebar(){
const sidebar = document.querySelector('.sidebar')
sidebar.style.display = 'none'
}
</script>
</body>
</html>