In: Computer Science
Using HTML: Create a Book of the Month Club Web site. The home page should describe the current month's selection, including book title, author, publisher, ISBN, and the number of pages. Create separate Web pages for book selections in each of the last three months. Add links to the home page that opens each of the three Web pages. Save the home page as BookClub.html, and save the Web Pages for previous months using the name of the month.
BOOK: Principles of HTML, XHTML, and DHTML: The Web Technologies
Series
CHAPTER 2 Building, Linking, Publishing Basic Web Pages
PROBLEM 2-1
BookClub.Html:-
<html>
<head>
<title> Month Club Website </title>
</head>
<body bgcolor="red">
<center><marquee><font face="Monotype corsiva"
size="25" color="yellow"> Current month's selection
</font></marquee></center>
<font face="times new roman"
size="10" color="white">
<ul>
<li>
<u>Book Title :</u> Principles of HTML, XHTML, and
DHTML: The Web Technologies Series</li>
<li>
<u>Book Author :</u> Don Gosselin </li>
<li>
<u>Publisher :</u> Cengage Learning; 1 edition
(December 1, 2010)</li>
<li>
<u>ISBN :</u> 0538474610</li>
<li>
<u>Number of pages :</u> 700 pages </li>
</ul>
<font face="times new roman"
size="8" color="white">
<a href="june.html">June's
Recommendation</a>
<a href="july.html">July's
Recommendation</a>
<a
href="august.html">august's
Recommendation</a></font>
</font>
</body>
</html>
July.html:-
<html>
<head>
<title> Month Club Website </title>
</head>
<body bgcolor="red">
<center><marquee><font face="Monotype corsiva"
size="20" color="yellow"> July's Monthly selection
</font></marquee></center>
<font face="times new roman"
size="12" color="white">
<ul>
<li>
<u>Book Title :</u> HTML, CSS, and JavaScript All in
One, Sams Teach Yourself (3rd Edition)</li>
<li>
<u>Book Author :</u> Julie C. Meloni </li>
<li>
<u>Publisher :</u> Sams Publishing; 3 edition (December
10, 2018) </li>
<li>
<u>ISBN :</u> 978-0672338083</li>
<li>
<u>Number of pages :</u> 800 </li>
</ul>
</font>
</body>
</html>
june.html :-
<html>
<head>
<title> Month Club Website </title>
</head>
<body bgcolor="red">
<center><marquee><font face="Monotype corsiva"
size="20" color="yellow"> june's Monthly selection
</font></marquee></center>
<font face="times new roman"
size="12" color="white">
<ul>
<li>
<u>Book Title :</u> ...............</li>
<li>
<u>Book Author :</u> ............. </li>
<li>
<u>Publisher :</u> ................ </li>
<li>
<u>ISBN :</u> ...................</li>
<li>
<u>Number of pages :</u> ............ </li>
</ul>
</font>
</body>
</html>
August.html:-
<html>
<head>
<title> Month Club Website </title>
</head>
<body bgcolor="red">
<center><marquee><font face="Monotype corsiva"
size="20" color="yellow"> August's Monthly selection
</font></marquee></center>
<font face="times new roman"
size="12" color="white">
<ul>
<li>
<u>Book Title :</u> ...............</li>
<li>
<u>Book Author :</u> ............. </li>
<li>
<u>Publisher :</u> ................ </li>
<li>
<u>ISBN :</u> ...................</li>
<li>
<u>Number of pages :</u> ............ </li>
</ul>
</font>
</body>
</html>
i am attaching the screenshots of all the pages and homepage along with the code. so , i hope your query is solved and in case of august and june add the details of any book you like in place of ........... . Have a great day and give your feedback.