-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.html
More file actions
114 lines (93 loc) · 4.8 KB
/
Blog.html
File metadata and controls
114 lines (93 loc) · 4.8 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog | Home</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<header class="bg-dark text-white py-3">
<nav class="navbar navbar-expand-lg bg-dark">
<div class="container d-flex align-items-center justify-content-between">
<!-- Logo Section -->
<a href="index.html" class="navbar-brand">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9rD9v3KJpyLN3ekFh2mFi9zVCV5zBYRhZkA&s" alt="Logo" style="height: 70px; width: 80px;">
</a>
<!-- Navigation Links -->
<div class="collapse navbar-collapse justify-content-left" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link text-white active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="blog-list.html">Blogs</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="create.html">Create Blog</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="container">
<h1>Top 5 Literary Classics Every Book Lover Should Read</h1>
<p>Welcome, book lovers! If you're looking to dive into some of the most cherished and influential books in the literary world, you're in the right place. Here are the top 5 timeless literary classics that have shaped the world of literature, offering rich stories, complex characters, and profound themes.</p>
<ol>
<li>
<div class="book-info">
<strong>Pride and Prejudice</strong> by Jane Austen
<p>A sharp commentary on social class, marriage, and morality, this 1813 novel has captivated readers with the witty and independent Elizabeth Bennet and her dynamic with the proud Mr. Darcy.</p>
</div>
</li>
<li>
<div class="book-info">
<strong>Moby-Dick</strong> by Herman Melville
<p>An epic tale of obsession and vengeance, *Moby-Dick* explores Captain Ahab's relentless hunt for the elusive white whale, with powerful themes of fate and free will.</p>
</div>
</li>
<li>
<div class="book-info">
<strong>1984</strong> by George Orwell
<p>A chilling dystopian novel about totalitarianism, surveillance, and the loss of individuality, *1984* serves as a timeless warning against the dangers of oppressive regimes.</p>
</div>
</li>
<li>
<div class="book-info">
<strong>To Kill a Mockingbird</strong> by Harper Lee
<p>This Pulitzer Prize-winning novel tackles issues of racial injustice, morality, and compassion through the eyes of Scout Finch, a young girl coming of age in the American South.</p>
</div>
</li>
<li>
<div class="book-info">
<strong>The Great Gatsby</strong> by F. Scott Fitzgerald
<p>A story of love, obsession, and disillusionment, *The Great Gatsby* captures the excess and corruption of the Jazz Age through the eyes of Nick Carraway and his fascination with the enigmatic Jay Gatsby.</p>
</div>
</li>
</ol>
</div>
</body>
<footer class="bg-dark text-light py-4">
<div class="container">
<!-- Contact Section -->
<div>
<h5>Contact Me</h5>
<p>
Moblie: 9247XXXXXX<br>
Email: par***@gmail.com
</p>
</div>
</div>
<!-- Divider -->
<hr class="border-light">
<!-- Footer Bottom -->
<div class="text-center">
<p class="mb-0">Made by Paryu Jain | © 2024 Book Lover's Blog. All
Rights Reserved.</p>
</div>
</div>
</footer>
</body>
</html>