-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBook.html
More file actions
33 lines (28 loc) · 801 Bytes
/
Book.html
File metadata and controls
33 lines (28 loc) · 801 Bytes
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
<!doctype html>
<html>
<head>
<title>
BOTTOM TEXT
</title>
<link rel="stylesheet" type="text/css" href="site.css" />
</head>
<body class="bg">
<div id="navbar">
<a href="Home.html">Home</a>
<a href="Book.html" class="active">Book</a>
<a href="Gallery.html">Gallery</a>
<a href="ContactUs.html">Contact Us</a>
<img src="logo.png" height="45" style="float: right" />
</div>
<br>
<script src="main.js"></script>
<footer>
<p style="float: right">
<h2>Contact us</h2><br>
<strong>Ph:</strong>+91XXXXXXXXX<br>
<strong id="email">Email:</strong>bottom@text.com<br>
</p>
<script src="site.js"></script>
</footer>
</body>
</html>