Page 306 - Web Applications (803) Class 12
P. 306
</body>
</html>
File3: Books.html
<html>
<head>
<title>Our Books</title>
<link rel=”stylesheet” href=”styles.css”>
</head>
<body>
<header>
<h1>Our Collection of Books</h1>
</header>
<nav>
<ul>
<li><a href=”index.html”>Home</a></li>
<li><a href=”about.html”>About</a></li>
<li><a href=”books.html”>Books</a></li>
<li><a href=”contact.html”>Contact</a></li>
</ul>
</nav>
<main>
<p>Explore our extensive collection of books. We have something for
everyone, from classics to the latest bestsellers.</p>
<h2>Book Genres</h2>
<table border=2>
<tr>
<th>Fiction</th>
<th>Self-Help</th>
<th>Classics</th>
</tr>
<tr>
<td>The Great Gatsby</td>
<td>The 7 Habits of Highly Effective People</td>
<td>Pride and Prejudice</td>
</tr>
<tr>
<td>To Kill a Mockingbird</td>
<td>How to Win Friends and Influence People</td>
<td>Moby-Dick</td>
304 Touchpad Web Applications-XII

