a.
To enter the name and the date in the comment section of files cp_astaire_txt.html, cp_media2_txt.css and cp_animate2_txt.css files and save them as cp_astaire.html, cp_media2.css and cp_animate2.css
a.
Explanation of Solution
Given information: The files cp_astaire_txt.html, cp_media2_txt.css and cp_animate2_txt.css are provided.
Explanation:
Below steps are followed to add name and the date in the comment section of cp_astaire_txt.html file:
1. Right click on file cp_astaire_txt.html.
2. Select Open with → HTML editor
3. Write name as “ABC” and date as “10/30/2020” according to below given format:
- <!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 8
Review Assignment
Cinema Penguin Fred Astaire Biography Page
Author: ABC
Date: 10/30/2020
Filename: cp_astaire.html
-->
4. Click Save As and enter filename as cp_astaire.html.
Same below steps are followed to add name and the date in the comment section of cp_media2_txt.css file:
1. Right click on file cp_media2_txt.css.
2. Select Open with → HTML editor
3. Write name as “ABC” and date as “10/30/2020” according to below given format:
/* New Perspectives on HTML and CSS, 7th Edition Tutorial 8 Review Assignment Cinema Penguin Styles for Media Author: ABC Date: 10/30/2020 Filename: */
4. Click Save As and enter filename as cp_media2.css.
Same below steps are followed to add name and the date in the comment section of cp_animate2_txt.css file:
1. Right click on file cp_animate2_txt.css
2. Select Open with → HTML editor
3. Write name as “ABC” and date as “10/30/2020” according to below given format:
/* New Perspectives on HTML and CSS, 7th Edition Tutorial 8 Review Assignment Cinema Penguin Styles for Animation Author: ABC Date: 10/30/2020 Filename: cp_animate2.css */
4. Click Save As and enter filename as cp_animate2.css.
b.
To open the file cp_captions2_txt.vtt and save it as cp_captions2.vtt.
b.
Explanation of Solution
Given information: The file cp_captions2_txt.vtt is provided.
Explanation:
Below steps are followed to save it as cp_captions2.vtt file:
1. Right click on file cp_captions2_txt.vtt.
2. Select Open with → HTML editor
3. Click Save As and enter filename as cp_captions2.vtt.
Want to see more full solutions like this?
Chapter 8 Solutions
New Perspectives on HTML5, CSS3, and JavaScript
- 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?arrow_forwardWhich code snippet will display an image named myimage.png that will be redirected to index.html when the link is selected. 1) <img href “index.html” src “myimge. Png”> 2) <a href “index.html” src “my imge. Png” /></a> 3) <img href “my image.png”> index,html</a> 4) <a href “my image.png” ><img src “index. html” /></a>arrow_forward1 New Perspectives on HTML5 and CSS3, 8th Edition 3 Tutorial 3 4. Review Assignment 6. Style Sheet for the Pandaisia Chocolates Monthly Specials 7 Author: Date: 10 Filename: pc_specials.css 11 12 */ 13 14 /* Page Body Styles */ 15 16 17 18 /* Image Styles */ 19 20 21 22 /* Horizontal Navigation Styles */ 23 24 25 26 27 /* Grid Styles */ 28 29 30 31 32 /* Specials Styles */ 33 34 35 36 /* Award Styles */ 37 38arrow_forward
- Setup Use your editor to open the ws_lincoln.html and ws_cloud.js. Enter your name and the date in the comment section of each file. Linking JS File Go to the ws_lincoln.html file in your editor. Link the page to the ws_cloud.css style sheet and the ws_stopwords.js and ws_cloud.js JavaScript files (in that order). Load the JavaScript files asynchronously. Study the contents of the file. Lincoln's speech is stored in a div element with the id "speech". The word cloud text will be placed in the aside element with the id "cloud". html---------------------------------------------------------------------- <!DOCTYPE html> <html lang="en"> <head> <!-- New Perspectives on HTML5, CSS3, and JavaScript 6th Edition Tutorial 13 Case Problem 4 Word Cloud of Lincoln's 1st Inaugural Author: Date: Filename: ws_lincoln.html --> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width,…arrow_forwardSomething is missing from my code, looking for helping spotting the issue.Open the lht_table.js file and below the comment section, declare a variable named thisDay containing the date October 1, 2021. You will use this date to test your script. Create a variable named tableHTML that will contain the HTML code of the events table. Add the text of the following HTML code to the initial value of the variable: <table id='eventTable'> <caption>Upcoming Events</caption> <tr><th>Date</th><th>Event</th><th>Price</th></tr> Declare a variable named endDate that contains a Date object that is 14 days after the date stored in the thisDay variable. Use the new Date() object constructor and insert a time value that is equal to thisDay.getTime() + 14*24*60*60*1000. Create a for loop that loops through the length of the eventDates array. Use i as the counter variable. Within the for loop insert the following commands in a…arrow_forward
- New Perspectives on HTML5, CSS3, and JavaScriptComputer ScienceISBN:9781305503922Author:Patrick M. CareyPublisher:Cengage Learning