New Perspectives on HTML5, CSS3, and JavaScript
New Perspectives on HTML5, CSS3, and JavaScript
6th Edition
ISBN: 9781305503922
Author: Patrick M. Carey
Publisher: Cengage Learning
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
What are the major threats of using the internet? How do you use it? How do children use it? How canwe secure it? Provide four references with your answer. Two of the refernces can be from an article and the other two from websites.
Assume that a string of name & surname is saved in S. The alphabetical characters in S can be in lowercase and/or uppercase letters. Name and surname are assumed to be separated by a space character and the string ends with a full stop "." character. Write an assembly language program that will copy the name to NAME in lowercase and the surname to SNAME in uppercase letters. Assume that name and/or surname cannot exceed 20 characters. The program should be general and work with every possible string with name & surname. However, you can consider the data segment definition given below in your program. .DATA S DB 'Mahmoud Obaid." NAME DB 20 DUP(?) SNAME DB 20 DUP(?) Hint: Uppercase characters are ordered between 'A' (41H) and 'Z' (5AH) and lowercase characters are ordered between 'a' (61H) and 'z' (7AH) in the in the ASCII Code table. For lowercase letters, bit 5 (d5) of the ASCII code is 1 where for uppercase letters it is 0. For example, Letter 'h' Binary ASCII 01101000 68H 'H'…
What did you find most interesting or surprising about the scientist Lavoiser?

Chapter 4 Solutions

New Perspectives on HTML5, CSS3, and JavaScript

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
SEE MORE 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