forked from charann29/opensource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNikhitha.html
More file actions
68 lines (68 loc) · 2.27 KB
/
Nikhitha.html
File metadata and controls
68 lines (68 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book Library</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Book Library</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="book-list">
<h2>Books</h2>
<ul>
<li>
<img src="book1.jpg" alt="Book 1 Cover">
<h3>Book 1: "To Kill a Mockingbird" by Harper Lee</h3>
<p>Fiction</p>
</li>
<li>
<img src="book2.jpg" alt="Book 2 Cover">
<h3>Book 2: "The Great Gatsby" by F. Scott Fitzgerald</h3>
<p>Fiction</p>
</li>
<li>
<img src="book3.jpg" alt="Book 3 Cover">
<h3>Book 3: "1984" by George Orwell</h3>
<p>Science Fiction</p>
</li>
<li>
<img src="book4.jpg" alt="Book 4 Cover">
<h3>Book 4: "Pride and Prejudice" by Jane Austen</h3>
<p>Romance</p>
</li>
<li>
<img src="book5.jpg" alt="Book 5 Cover">
<h3>Book 5: "The Catcher in the Rye" by J.D. Salinger</h3>
<p>Young Adult</p>
</li>
</ul>
</section>
<section id="book-form">
<h2>Add a Book</h2>
<form>
<label for="title">Title:</label>
<input type="text" id="title" name="title"><br><br>
<label for="author">Author:</label>
<input type="text" id="author" name="author"><br><br>
<label for="genre">Genre:</label>
<input type="text" id="genre" name="genre"><br><br>
<input type="submit" value="Add Book">
</form>
</section>
</main>
<footer>
<p>© 2024 Book Library</p>
</footer>
</body>
</html>