Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit bdba25a

Browse files
authored
Merge pull request #10 from githubtraining/feedback-from-stepan
Fix stylesheet filename
2 parents 6d18128 + c70abd4 commit bdba25a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

responses/11-link-css.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ The appearance of each page element is defined through styles and is the subject
77
For your webpage to use your new stylesheet, you just need to link it within the `<head>` of your `index.html` file. If you include the following link in your `index.html` file, your webpage will begin using the css file to make your website look awesome!
88

99
```html
10-
<link rel="stylesheet" href="styles.css">
10+
<link rel="stylesheet" href="style.css">
1111
```
1212

1313
As an example, your `index.html` file might look like this:
1414

1515
```html
1616
<head>
1717
<title>I am a title!</title>
18-
<link rel="stylesheet" href="styles.css">
18+
<link rel="stylesheet" href="style.css">
1919
</head>
2020
```
2121

2222
### :keyboard: Activity: Create a style to your site
2323

2424
1. Edit the `index.html` file in the `add-style` branch by [using this direct link](https://github.com/{{ user.username }}/{{ repo }}/edit/add-style/index.html) or going to the **Code** tab, selecting the `add-style` branch, clicking on the `index.html` file, and clicking the pencil :pencil: to edit.
25-
1. Between the `<head>` tags, add the following `<link rel="stylesheet" href="styles.css">`.
25+
1. Between the `<head>` tags, add the following `<link rel="stylesheet" href="style.css">`.
2626
1. In the _Commit changes_ section, enter a commit message that describes what you've done.
2727
1. Click on **Commit changes**.
2828

0 commit comments

Comments
 (0)