-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.38 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Historical Book Covers</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Historical Book Covers</h1>
</header>
<main>
<div class="book-grid">
<div class="book-card">
<img src="book1.jpg" alt="Book 1">
<div class="book-info">
<h2>Book 1 Title</h2>
<p>Author: John Doe</p>
<p>Publication Date: January 1, 1900</p>
<p>Country: United States</p>
<p>Continent: North America</p>
<p>Museum: Smithsonian Institution</p>
<a href="#">View in Arabic</a>
</div>
</div>
<div class="book-card">
<img src="book2.jpg" alt="Book 2">
<div class="book-info">
<h2>Book 2 Title</h2>
<p>Author: Jane Doe</p>
<p>Publication Date: February 1, 1900</p>
<p>Country: United Kingdom</p>
<p>Continent: Europe</p>
<p>Museum: British Museum</p>
<a href="#">View in Arabic</a>
</div>
</div>
<!-- More book cards here -->
</div>
</main>
<footer>
<p>© 2023 Historical Book Covers. All rights reserved.</p>
</footer>
</body>
</html>