-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex (1).php
37 lines (29 loc) · 1.06 KB
/
index (1).php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Between the Spines</title>
<!-- Use an absolute path for the CSS -->
<link rel="stylesheet" href="https://betweenthespines.fun/css/styles.css">
</head>
<body>
<header>
<h1>Welcome to Between the Spines</h1>
</header>
<nav>
<a href="/index.php">Home</a>
<a href="/Books-for-sale/books-for-sale.php">Books for Sale</a>
<a href="/loyalty-registration/loyalty-registration.php">Loyalty Registration</a>
<a href="/Contact-us/contact.php">Contact Us</a>
</nav>
<section class="content">
<h2>Our Bookstore</h2>
<p>Explore "Between the Spines" where you'll find a wide selection of books, join our loyalty program, and stay updated on new releases.</p>
<p>Feel free to reach out to us with any questions or concerns.</p>
</section>
<footer>
<p>© 2024 Between the Spines</p>
</footer>
</body>
</html>