To open the tss_coach_txt.html and coach_style_txt.css files then enter your name and date in the comment section of each file and then save them as tss_coach.html and coach_style.css respectively.
Explanation of Solution
First open the tss_coach_txt.html file in the editor and enter your name and date in the comment section of tss_coach_txt.html file as shown below in bold text:
<!doctype html> <html> <head> <!-- New Perspectives on HTML5 and CSS3, 7th Edition Tutorial 2 Review Assignment Author: Carey Date: 2019/08/19 Filename: tss_coach_txt.html --> <meta charset="utf-8" /> <title>Tri and Succeed Sports Coaches</title> <link href="coach_layout.css" rel="stylesheet" /> <link href="coach_styles.css" rel="stylesheet" /> </head>
Now, save the file as tss_coach_txt.html.
Similarly, open the coach_style_txt.css file in the editor and enter your name and date in the comment section of coach_style_txt.css file as shown below in bold text:
/*Filename: coach_style_txt.css */
@charset "utf-8";
@font-face {
font-family: Nobile;
src: url('nobile-webfront.woff') format('woff');
url('nobile-webront.tff') format('truetype');
}
/*
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 2
Review Assignment
Author: Carey
Date: 2019/08/19
Filename: coach_style_txt.css
*/ss
Now, save the file as coach_style.css.
Want to see more full solutions like this?
Chapter 2 Solutions
New Perspectives on HTML5, CSS3, and JavaScript
- 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_forwardFlex Layout Styles You’ll layout the golf course pages using a flex layout. Go to the Flex Layout Styles section and create a style rule for the page body that displays the body as a flexbox oriented in the row direction with wrapping. As always, include the -webkit browser extension in all of your flex styles. Navigation List Two of the child elements of the page body are a navigation list with the ID #hole_list and an article element containing information about the current hole. Add a style rule that sets the flex growth, shrink, and basis size values of the hole_list navigation list to 1, 3, and 140 pixels. Article Styles Add a style rule that sets the flex growth, shrink, and basis size values of the article element to 3, 1, and 341 pixels. The article element contains statistics and a summary about the current hole. Michael also wants this element to be treated as a flexbox. Add to the style rule for the article element styles that display the element as a flexbox oriented in the…arrow_forward
- New Perspectives on HTML5, CSS3, and JavaScriptComputer ScienceISBN:9781305503922Author:Patrick M. CareyPublisher:Cengage Learning