-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd-book.html
More file actions
47 lines (44 loc) · 1.46 KB
/
add-book.html
File metadata and controls
47 lines (44 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add New Book - COSMOLINK</title>
<link rel="stylesheet" href="add-book.css">
<script defer src="script.js"></script>
</head>
<body>
<header>
<div class="logo">
<h2>COSMOLINK</h2>
</div>
<nav class="nav">
<ul>
<li><a href="signin.html">sign_in</a></li>
<li><a href="about.html">About</a></li>
<li><a href="news.html">News</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="library.html">Books</a></li>
<li><a href="calendar.html">Space Calendar</a></li>
<li><a href="forum.html">Discussion Forum</a></li>
<li><a href="queries.html">Queries</a></li>
<li class="btn"><a href="contact.html">Get in Touch</a></li>
</ul>
</nav>
</header>
<section id="add-book-section">
<div class="container">
<h2>Add a New Book</h2>
<form id="book-form">
<input type="text" id="book-title" placeholder="Book Title" required />
<input type="text" id="author-name" placeholder="Author" required />
<textarea id="description" placeholder="Brief Description" required></textarea>
<button type="submit">Add Book</button>
</form>
</div>
</section>
<footer>
<p>Made by Space Enthusiasts 🌌 | 2024</p>
</footer>
</body>
</html>