8.3k views
2 votes
Go to the sd_messier.html file. Within the document head, create links to the sd_base.css, sd_layout.css, and sd_effects.css style sheet files in the order listed. Study the content and structure of the web page before moving onto the next step.

1 Answer

3 votes

Answer:

Step-by-step explanation:

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

@charset "UTF-8"

@font-face { font-family: Nobile;

src: url (nobile-webfont.woff); }

User DryLabRebel
by
8.2k points