Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Enter your name and the date in the comment section of tss_coach.html and coach_

ID: 3909967 • Letter: E

Question

Enter your name and the date in the comment section of tss_coach.htmland coach_styles.css. These files will be saved automatically for you.

Go to the tss_coach.html file in your editor and then within the document head, create links to the coach_layout.css and coach_styles.cssstyle sheets.

Before moving on to the next step, take some time to study the content and structure of the starter files.

Initial Setup

Click on the coach_styles.css file in the coding editor. At the top of the file and before the comment section do the following:

Insert an @charset rule to set the character encoding for the file to utf-8.

Use the @font-face rule to define a web font named Nobile, which is based on the nobile-webfont.woff file and, if that format is not supported, on the nobile-webfont.ttf file.

Explanation / Answer

1. Inside tss_coach.html <head> section, include these two lines of code:

<link rel="stylesheet" href="coach_layout.css">

<link rel="stylesheet" href="coach_styles.css">

These two lines links the CSS files with the HTML code.

2. Include the below two lines at the top of the file coach_styles.css and before the comment section