forked from Webaddicted91/Visieum2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
book.html
39 lines (36 loc) · 1.32 KB
/
book.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navbar">
<span class="hamburger-btn material-symbols-rounded">menu</span>
<a href="#" class="logo">
<img src="logo1.png" alt="VISIEUM">
<h2>VISIEUM</h2>
</a>
<input type="checkbox" id="click" />
<label for="click">
<i class="menu_btn bx bx-menu"></i>
<i class="close_btn bx bx-x"></i>
</label>
<ul class="links">
<span class="close-btn material-symbols-rounded">close</span>
<li><a href="index.html">Home</a></li>
<li><a href="index.html">Gallary</a></li>
<li><a href="index.html">Museums</a></li>
<li><a href="index.html">Explore</a></li>
<li><a href="index.html">About Us</a></li>
<li><a href="index.html">Contact</a></li>
</ul>
<!--<button class="login-btn">LOG IN</button> -->
</nav>
</header>
<script src="app.js"></script>
</body>
</html>