Task 1. Create a new page (games.html): Use the music page as the starting point for the Game page. In your text editor open music.html and save it as games.html. After modifying the games page, it will look similar to the Games page in Figure 1. Change the page title to an appropriate phrase. Delete the div element with id="musicbg", then open the style.css in your text editor and delete all the rules for id = “musicbg”. This will remove the music image from the new page. Replace the text within the h2 element with following: “My Favorite Video Games”. Delete paragraph, h3 and table elements. Place an unordered list with your 4 favorite video games as list items. Create a photo gallery with 4 pictures: • Search on the internet for cover picture of your favorite games, and same them in your folder. For each image create another image as thumbnail. You can use windows paint or any other image editor to resize the images. • After completing the previous step, in your folder, you will have 8 new image files that show 4 pictures. For instance: photo1.jpg and photo1thumb.jpg for your first game, and so on. • Add all images and their thumbnail version as an unordered list to the games page. • Place the first image inside a figure element. • In css file add all the required rules to show 4 thumbnail pictures on the left side and the first large picture (the one within the figure tag) on the right side. Your gallery will look like the following image but with your own video pictures. Add a hover effect that changes the image on the right: • Add a script tag in the head section of games.html to access a jQuery CDN. • Code a jQuery script block that includes the ready event and use the hover function to change the anchor elements within the gallery with moving your mouse over each thumbnail image. Task 2. Add javaScript to your home page: Create an alert window to show the text “Welcome to My little Library” when the home page is loaded. In the page footer section after the e-mail link, add div element that contains a script block that will write the following message to the document: “This page was last modified on: date” Use the document.lastModified property to print the date. GameHtml:  My Little Library                        My Little Library                      Home   Books   Music   Video Games   Contact                        My Favorite Video Games                Game 1         Game 2         Game 3         Game 4                                                                                                        Grand Theft Auto                      HomeHtml My Little Library                              My Little Library          Home   Books   Music   Video Games   Contact          Find your most favorite item       My little library provides all sort of books, music and video games. More                     You can find out your favorite stories. For order, please send me an Email         Books         Music         Video Games

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question


Task 1. Create a new page (games.html):
Use the music page as the starting point for the Game page. In your text editor open music.html
and save it as games.html. After modifying the games page, it will look similar to the Games page
in Figure 1.
Change the page title to an appropriate phrase.
Delete the div element with id="musicbg", then open the style.css in your text editor and delete
all the rules for id = “musicbg”. This will remove the music image from the new page.
Replace the text within the h2 element with following: “My Favorite Video Games”.
Delete paragraph, h3 and table elements.
Place an unordered list with your 4 favorite video games as list items.
Create a photo gallery with 4 pictures:
• Search on the internet for cover picture of your favorite games, and same them in your folder.
For each image create another image as thumbnail. You can use windows paint or any other
image editor to resize the images.
• After completing the previous step, in your folder, you will have 8 new image files that show
4 pictures. For instance: photo1.jpg and photo1thumb.jpg for your first game, and so on.
• Add all images and their thumbnail version as an unordered list to the games page.
• Place the first image inside a figure element.
• In css file add all the required rules to show 4 thumbnail pictures on the left side and the first
large picture (the one within the figure tag) on the right side. Your gallery will look like the
following image but with your own video pictures.
Add a hover effect that changes the image on the right:
• Add a script tag in the head section of games.html to access a jQuery CDN.
• Code a jQuery script block that includes the ready event and use the hover function to
change the anchor elements within the gallery with moving your mouse over each
thumbnail image.
Task 2. Add javaScript to your home page:
Create an alert window to show the text “Welcome to My little Library” when the home page is
loaded.
In the page footer section after the e-mail link, add div element that contains a script block that
will write the following message to the document:
“This page was last modified on: date”
Use the document.lastModified property to print the date.

GameHtml:  <title>My Little Library</title>

  <link href="style.css" rel="stylesheet">
  <meta charset="utf-8">
</head>
  </script>
<body>
  <div id="wrapper">
    <header>
      <h1>My Little Library</h1>
    
    </header>

    <nav>
      <b><a href="Home.html">Home</a> &nbsp; <a href="Books.html">Books</a> &nbsp; <a href="Music.html">Music</a> &nbsp; <a href="VideoGames.html">Video Games</a> &nbsp; <a href="Contact.html">Contact</a> &nbsp;<!-- &nbsp to create the extra spaces between the links --></b>
    </nav>
    
    <main>
      <h2>My Favorite Video Games</h2>
      <ul>
        <li>Game 1</li>
        <li>Game 2</li>
        <li>Game 3</li>
        <li>Game 4</li>
      </ul>
      <div>

      </div id = "gallery">
      <ul>
      <li>
        <a href="Game5.jpg" title ="Funny game"><img scr=Game5thumbnail.png width = "100" heigh= "75"alt="Water"> </a></li>
       <li> <a href="Game2.jfif" title ="Funny game"><img scr=Game2thumbnail.png width = "100" heigh= "75"alt="Joker"> </a></li>
      <li><a href="Game3.jfif" title ="Funny game"><img scr=Game3thumbnail.png width = "100" heigh= "75"alt="Spider-man"> </a></li>
    <li><a href="Game4.jpg" title ="Funny game"><img scr=Game5thumbnail.png width = "100" heigh= "75"alt="monopoly"> </a></li>
      <li>  <a href="Game1.jfif" title ="Funny game"><img scr=Game1thumbnail.png width = "100" heigh= "75"alt="GTA"> </a></li>
      </ul>
      <figure>
         <img src = "Game5.jfif" width="600" height="500" alt = "Grand Theft Auto"> <figcaption>Grand Theft Auto</figcaption>
        </figure> <div></div>
    </main>
    <footer>
 
HomeHtml
<title>My Little Library</title>
  <link href="style.css" rel="stylesheet">
  <meta charset="utf-8">
</head>
<body>
  <div id="wrapper">
    <main>
      <header>
        <h1>My Little Library</h1>   </header>
      <script type="text/javascript">
      $(document).ready(function() {alert("Welcome to My little Library!");
      }) </script><nav><b><a href="Home.html">Home</a> &nbsp; <a href="Books.html">Books</a> &nbsp; <a href="Music.html">Music</a> &nbsp; <a href="VideoGames.html">Video Games</a> &nbsp; <a href="Contact.html">Contact</a> &nbsp;<!-- &nbsp to create the extra spaces between the links --></b>
      </nav> </main><h2>Find your most favorite item</h2>
      <p>My little library provides all sort of books, music and video games.</p> <a href= "#" id="more">More </a>
        <div id="details">
         <p> You can find out your favorite stories. For order, please send me an Email</p></div> <ul><input type="text" id="more">
        <li>Books</li>
        <li>Music</li>
        <li>Video Games</li>
      </ul>
      <div>
      </body>
        <footer>
Task 1. Create a new page (games.html):
Use the music page as the starting point for the Game page. In your text editor open music.html
and save it as games.html. After modifying the games page, it will look similar to the Games page
in Figure 1.
My Little Library
Home Books Music Video Games Contact
My Favorite Video Games
Game 1
Game 2
• Game 3
• Game 4
FORTNITE
TETKI
THE LEGEND OF
ABLDA
BREATH WILD
Zelda
Change the page title to an appropriate phrase.
Delete the div element with id="musicbg", then open the style.css in your text editor and delete
all the rules for id = "musicbg". This will remove the music image from the new page.
Replace the text within the h2 element with following: "My Favorite Video Games".
Delete paragraph, h3 and table elements.
Place an unordered list with your 4 favorite video games as list items.
Create a photo gallery with 4 pictures:
Transcribed Image Text:Task 1. Create a new page (games.html): Use the music page as the starting point for the Game page. In your text editor open music.html and save it as games.html. After modifying the games page, it will look similar to the Games page in Figure 1. My Little Library Home Books Music Video Games Contact My Favorite Video Games Game 1 Game 2 • Game 3 • Game 4 FORTNITE TETKI THE LEGEND OF ABLDA BREATH WILD Zelda Change the page title to an appropriate phrase. Delete the div element with id="musicbg", then open the style.css in your text editor and delete all the rules for id = "musicbg". This will remove the music image from the new page. Replace the text within the h2 element with following: "My Favorite Video Games". Delete paragraph, h3 and table elements. Place an unordered list with your 4 favorite video games as list items. Create a photo gallery with 4 pictures:
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY