-
Notifications
You must be signed in to change notification settings - Fork 0
/
books.html
35 lines (33 loc) · 1000 Bytes
/
books.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Books | Dr. Haradhan Adhikary</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<!-- Navbar will load dynamically -->
<section>
<h2>Books</h2>
<div class="container">
<div class="card-grid">
<div class="card">
<img src="images/book1.jpg" alt="Book 1" />
<div class="card-content">
<h3>Experimental Particle Physics</h3>
<p>Published in collaboration with CERN researchers.</p>
<a href="files/book1.pdf" download>Download PDF</a>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Dr. Haradhan Adhikary. All rights reserved.</p>
</div>
</footer>
</body>
</html>