Page 305 - Web Applications (803) Class 12
P. 305
<h1>Welcome to the Library Club</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>Welcome to the Library Club’s website. Explore our collection of
books and find out more about us.</p>
</main>
</body>
</html>
File2: About.html
<html>
<head>
<title>About Us</title>
<link rel=”stylesheet” href=”styles.css”>
</head>
<body>
<header>
<h1>About Library Club</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>We are a passionate group of book lovers who have come together to
form the Library Club. Learn more about our mission and activities
on this page.</p>
</main>
Projects 303

