Question

In: Computer Science

Using HTML: Create a Book of the Month Club Web site. The home page should describe...

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

Solutions

Expert Solution

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.


Related Solutions

Create a Web Page Using HTML, CSS, JS, jQuery • Create a web profile, including any...
Create a Web Page Using HTML, CSS, JS, jQuery • Create a web profile, including any of the following: • Your hobbies, likes/dislikes, career aspirations, dream job, favorite animals/ pets, favorite superhero, etc. • You do not have to share personal information that you are uncomfortable with sharing. Follow these guidelines when creating your page: • Include at least one heading (h1, h2, etc.) in your web page. • Provide a quote from a book, movie, etc. • Include at...
Create a footer for web page using HTML,CSS,Javascript. The footer should contain 1.Back to top button...
Create a footer for web page using HTML,CSS,Javascript. The footer should contain 1.Back to top button 2.Random logo 3.Copyright content
Create a web page using PHP and HTML that contains a list of movie names available...
Create a web page using PHP and HTML that contains a list of movie names available for rent (at least 10 movies), so that each time you visit the home page, you see a different order of movies in the list. The movie names are required. 2) The rental price for each movie ranges between $1.99 to $7.99. • Create an associative array with a code for the movie as the key (e.g., movie1, movie2, etc.) and the associated rental...
Create a Home Page using HTML and CSS Part 1 • Contain an image or logo...
Create a Home Page using HTML and CSS Part 1 • Contain an image or logo about your website. • Must contain three navigation links. Home link. Registration link. Animations link. • Footer will contain links to web pages to any other site you wish (just be outside your webpage, like YouTube,etc.) Open links in new tab, not current tab. Create a Registration page: • Registration Fields: 1) User Name - Input Text 2) Password - Input Password 3) Repeat...
Make a modest or simple Web page using Python flask. The basic components of HTML should...
Make a modest or simple Web page using Python flask. The basic components of HTML should be included. The Web page should have at least 3 Headings(<h1>), paragraph (<p>), comments (<!-- -->), ordered list, unordered list, three links to website, and should display time & date. Example: <html>     <head>         <title>Page Title</title>     </head> <body>     ..new page content.. </body> </html>
Develop a personal web page for yourself using HTML, CSS, and Javascript Use the following HTML...
Develop a personal web page for yourself using HTML, CSS, and Javascript Use the following HTML tags to design your webpage: <h1>...</h1>,<h3>...</h3>, <h6>...</h6>, <p>...</p>, <b>...</b>, <i>...</i>, <a>...</a>, <img...>, <table>... </table>, <div>...</div>, <form>...</form>, <input type="text">, and <input type= "submit"> Use an external css to change the default style of your webpage. You must use at least one element selector, one id selector, and one class selector Using text input and submit button, allow the user to change the background color of...
HTML Create a page of texts that uses inline elements. The page should contain a citation,...
HTML Create a page of texts that uses inline elements. The page should contain a citation, a term definition, a subscript, a superscript and some highlighted texts.
Create a Web page about a book ( The Richest Man in Babylon) that includes the...
Create a Web page about a book ( The Richest Man in Babylon) that includes the following: -page title -a meta keywords tag with at least (5) keywords -a meta description tag -a meta robots tag to allow indexing, but not permit crawling of the site Also, provide 1-2 paragraphs of content with three relevant text links.
1 -​Create the code to generate a default web page. The contents of this page should...
1 -​Create the code to generate a default web page. The contents of this page should be Your​​Name, right justified
Using the combination of HTML and PHP, implement a web page where the users can upload...
Using the combination of HTML and PHP, implement a web page where the users can upload a text file, exclusively in .txt format, which contains a string of 1000 numbers, such as: 71636269561882670428252483600823257530420752963450 85861560789112949495459501737958331952853208805511 65727333001053367881220235421809751254540594752243 52584907711670556013604839586446706324415722155397 53697817977846174064955149290862569321978468622482 83972241375657056057490261407972968652414535100474 82166370484403199890008895243450658541227588666881 96983520312774506326239578318016984801869478851843 12540698747158523863050715693290963295227443043557 66896648950445244523161731856403098711121722383113 05886116467109405077541002256983155200055935729725 16427171479924442928230863465674813919123162824586 17866458359124566529476545682848912883142607690042 24219022671055626321111109370544217506941658960408 07198403850962455444362981230987879927244284909188 84580156166097919133875499200524063689912560717606 62229893423380308135336276614282806444486645238749 73167176531330624919225119674426574742355349194934 30358907296290491560440772390713810515859307960866 70172427121883998797908792274921901699720888093776 Your code should contain a PHP function that, accepting the string of 1000 numbers in input, is able to: 1) Find the 5 adjacent numbers that multiplied together...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT