-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 1.71 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
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=1024, initial-scale=1.0">
<meta charset="UTF-8">
<title>Library</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="header-title">
<img src="images/acm library.png" width="150" height="150" class="header-image"> ACM Library
</h1>
</header>
<main>
<section class="book-list">
<h2>Book Library</h2>
<table>
<thead id="bookTableHeader">
<tr>
<th>Title</th>
<th>Cover</th>
<th>Author</th>
<th>Description</th>
<th>Available</th>
</tr>
</thead>
<!-- Generate table rows dynamically -->
<tbody id="bookTableBody"></tbody>
</table>
</section>
<section class="collaborate">
<h2>Borrow Book Now! 📖✨</h2>
<p>Just a simple tap and dive into your next great read by filling out the form.</p>
<a href="#" id="submissionLink">Borrow Now</a>
</section>
<br><br>
<section class="contact">
<h2>Contact Us</h2>
<p>If you have any questions or would like to contribute to our library, you can reach us at <a
href="mailto:[email protected]">[email protected]</a>.</p>
</section>
<br><br>
</main>
<footer>
<p>© 2024 ACM Library</p>
</footer>
<script src="books.js"></script>
<script src="script.js"></script>
</body>
</html>