-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexp.html
53 lines (46 loc) · 1.93 KB
/
indexp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Book Store</title>
</head>
<body>
<nav>
<img src="logotwilight.png">
<ul>
<li><a href="indexp.html">Home</a></li>
<li><a href="about.html">Books</a></li>
<li><a href="registration.html">Register/Login</a></li>
<li><a href="orderp.html">Order Now</a></li>
</ul>
</nav>
<div class="container">
<div class="home">
<h1 class="homeh1">Meet the Twilight creator </h1>
<h3 class="homeh2">"I like the night. Without the dark, we'd never see the stars." - Stephenie Meyer</h3>
<p class="homep">
Stephenie Meyer is born December 24, 1973 .<br>
She is an American novelist and film producer.<br>
She is best known for writing the vampire romance<br>
series Twilight, which has sold over 160 million copies,<br>
with translations into 37 different languages. Meyer was<br>
the bestselling author of 2008 and 2009 in the U.S., having <br>
sold over 29 million books in 2008 and 26.5 million in 2009.<br>
Meyer received the 2009 Children's Book of the Year award from <br>
the British Book Awards for Breaking Dawn.</p>
</div>
<div class="img-w-50">
<img src="author.jpg" alt="Author Image" class="author-image" width="300px" height="500px">
</div>
</div>
<footer>
<span>© <span id="currentYear"></span> Book Store. All rights reserved.</span>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"
integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script1.js"></script>
</body>
</html>