New Perspectives on HTML and CSS
New Perspectives on HTML and CSS
6th Edition
ISBN: 9781111526443
Author: Carey, Patrick
Publisher: Course Technology Ptr
Question
Book Icon
Chapter 4, Problem 1RA
Program Plan Intro

To edit the file name and enter your name and date in comment section for the files tb_visual3_txt.css, tb_visual4_txt.css, and tb_ferris_txt.html and tb_kathleen_txt.html.

Expert Solution & Answer
Check Mark

Explanation of Solution

Comment in CSS:

/*
   Lines between this block consider as CSS comments
*/

Comment in HTML:

<!--
Lines between this block consider as HTML comments
   -->

Following steps are used to make changes to tb_visual3_txt.css file:

  1. Right-click on file tb_visual3_txt.css.
  2. Select Edit Open with → Notepad++.
  3. Under the firstcomment section, write the following code given below.
  4. /*
       New Perspectives on HTML5 and CSS3, 7th Edition
       Tutorial 4
       Review Assignment
       
       Design Style Sheet for Tree and Book Family Home Page
       Author: Jack
       Date:   20/08/2019
       
       Filename: tb_visual3.css
    */
    
  5. Click on Save as and save this file as tb_visual3.css.

A new update tb_visual3.css file will get created in the same directory.

Following steps are used to make changes to tb_visual4_txt.css file:

  1. Right-click on file tb_visual4_txt.css.
  2. Select Edit Open with → Notepad++
  3. Under the first comment section, write the following code given below.
  4. /*
       New Perspectives on HTML5 and CSS3, 7th Edition
       Tutorial 4
       Review Assignment
       
       Individuals Design Style Sheet at Tree and Book
       Author: Jack
       Date:   20/08/2019
       
       Filename: tb_visual4.css
    */
    
  5. Click on Save as and save this file as tb_visual4.css.

A new update tb_visual4.cssfile will get created in the same directory.

Following steps are used to make changes to tb_ferris_txt.html file:

  1. Right-click on file tb_ferris_txt.html.
  2. Select Edit Open with → Notepad++
  3. Under the section comments, write the following code given below-
  4. <!--
        New Perspectives on HTML5 and CSS3, 7th Edition
        Tutorial 4
        Review Assignment
        Home Page of the Ferris Family Page at Tree and Book
        Author:Jack
        Date:20/08/2019
        Filename: tb_ferris.html
       -->
    
  5. Click on Save as and save this file as tb_ferris.html.

A new update tb_ferris_txt.htmlfile will get created in the same directory.

Following steps are used to make changes to tb_kathleen_txt.html file:

  1. Right-click on file tb_kathleen_txt.html.
  2. Select Edit Open with → Notepad++
  3. Under the section comments, write the following code given below-
  4. <!--
        New Perspectives on HTML5 and CSS3, 7th Edition
        Tutorial 4
        Review Assignment
        Photo Page of Kathleen Ferris
        Author:Jack
        Date:20/08/2019
        Filename: tb_kathleen.html
       -->
    
  5. Click on Save as and save this file as tb_kathleen.html.

A new update tb_kathleen.htmlfile will get created in the same directory.

tb_kathleen.html file code:

A comment is the not readable and compliablepart of any program, as comments are used to describe program lines. In the above code line between (/*Some lines*/) blocks are used as CSS comment, whatever is written inside this block will not affect the CSS code.Simply write your name corresponding to the author and date corresponding to date.

In the above code line between (<!-- Some lines -->) blocks are used as HTML comment, whatever is written inside this block will not affect the HTML code. Simply write your name corresponding to the author and date corresponding to date.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
In the index.html file, in the header element, wrap the anchor element within a div element with a class attribute value of tab-desk. Below this div element (still within the header element), create a new div element with a class attribute value of mobile. Nest the following elements within this div: <h1>&#128062; Wild Rescues</h1> <h3>Rescue. Rehabilitate. Release.</h3>---My index.html <html lang="en">   <head>     <title>Wild Rescues: Home</title>     <meta charset="utf-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <link rel="stylesheet" href="css/styles.css">   </head>   <body>     <header>       <a div class="tab-desk">       <a href="index.html"> <img src="images/baby-hawk.jpg" alt="rescued baby hawk"> </a>     </header>     <nav>       <ul>          <li><a href="index.html">Home</a></li>…
Complete the following: 1. Using your editor, open the sp_home_txt.html and sp_layout_txt.css files from the html03 c folder. Enter your name and the date in the comment section of each file, and save them as sp_home.html and sp_layout.css respectively. 2. Go to the sp_home.html file in your editor. Within the document head, create links to the sp_base.css, sp_styles.css, and sp_layout.css style sheet files. Study the content and structure of the file and then save your changes to the document. dou you know the solution?
Global Variable Go to the jpf_hitori.js file in your editor. Directly below the comment section, declare the global allCells variable, which you will use to store an array of the puzzle cells in the Hitori table. Do not define a value for the variable yet. JavaScript Functions Insert a command to run the startUp() function when the page is loaded by the browser. Add the startUp() function, which displays the contents of Puzzle 1 after the page is loaded and sets up the initial event handlers. Within the function, add the following commands: Change the inner HTML of the element with the ID, “puzzleTitle” to the text “Puzzle 1”. Call the drawHitori() function using the hitori1Numbers, hitori1Blocks, and hitori1Rating variables as parameter values and store the HTML code returned by the function in the inner HTML of the page element with the ID “puzzle”. Declare a variable named puzzleButtons referencing the page elements with the class name “puzzles”. Loop through the puzzleButtons…

Chapter 4 Solutions

New Perspectives on HTML and CSS

Ch. 4.2 - Prob. 2QCCh. 4.2 - Prob. 3QCCh. 4.2 - Prob. 4QCCh. 4.2 - Prob. 5QCCh. 4.2 - Prob. 6QCCh. 4.2 - Prob. 7QCCh. 4.2 - Prob. 8QCCh. 4.2 - Prob. 9QCCh. 4.3 - Prob. 1QCCh. 4.3 - Prob. 2QCCh. 4.3 - Prob. 3QCCh. 4.3 - Prob. 4QCCh. 4.3 - Prob. 5QCCh. 4.3 - Prob. 6QCCh. 4.3 - Prob. 7QCCh. 4.3 - Prob. 8QCCh. 4.3 - Prob. 9QCCh. 4 - Prob. 1RACh. 4 - Prob. 2RACh. 4 - Prob. 3RACh. 4 - Prob. 4RACh. 4 - Prob. 5RACh. 4 - Prob. 6RACh. 4 - Prob. 7RACh. 4 - Prob. 8RACh. 4 - Prob. 9RACh. 4 - Prob. 10RACh. 4 - Prob. 11RACh. 4 - Prob. 12RACh. 4 - Prob. 13RACh. 4 - Prob. 14RACh. 4 - Prob. 15RACh. 4 - Prob. 16RACh. 4 - Prob. 17RACh. 4 - Prob. 18RACh. 4 - Prob. 19RACh. 4 - Prob. 20RACh. 4 - Prob. 21RACh. 4 - Prob. 22RACh. 4 - Prob. 23RACh. 4 - Prob. 24RACh. 4 - Prob. 25RACh. 4 - Prob. 1CP1Ch. 4 - Prob. 2CP1Ch. 4 - Prob. 3CP1Ch. 4 - Prob. 4CP1Ch. 4 - Prob. 5CP1Ch. 4 - Prob. 6CP1Ch. 4 - Prob. 7CP1Ch. 4 - Prob. 8CP1Ch. 4 - Prob. 9CP1Ch. 4 - Prob. 10CP1Ch. 4 - Prob. 11CP1Ch. 4 - Prob. 1CP2Ch. 4 - Prob. 2CP2Ch. 4 - Prob. 3CP2Ch. 4 - Prob. 4CP2Ch. 4 - Prob. 5CP2Ch. 4 - Prob. 6CP2Ch. 4 - Prob. 7CP2Ch. 4 - Prob. 8CP2Ch. 4 - Prob. 9CP2Ch. 4 - Prob. 10CP2Ch. 4 - Prob. 11CP2Ch. 4 - Prob. 12CP2Ch. 4 - Prob. 1CP3Ch. 4 - Prob. 2CP3Ch. 4 - Prob. 3CP3Ch. 4 - Prob. 4CP3Ch. 4 - Prob. 5CP3Ch. 4 - Prob. 6CP3Ch. 4 - Prob. 7CP3Ch. 4 - Prob. 8CP3Ch. 4 - Prob. 9CP3Ch. 4 - Prob. 10CP3Ch. 4 - Prob. 11CP3Ch. 4 - Prob. 12CP3Ch. 4 - Prob. 13CP3Ch. 4 - Prob. 1CP4Ch. 4 - Prob. 2CP4Ch. 4 - Prob. 3CP4Ch. 4 - Prob. 4CP4Ch. 4 - Prob. 5CP4Ch. 4 - Prob. 6CP4
Knowledge Booster
Background pattern image
Similar questions
Recommended textbooks for you
Text book image
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Cengage Learning
Text book image
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:9781337508841
Author:Carey
Publisher:Cengage