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

Commit 615f854

Browse files
authored
Merge pull request #6 from githubtraining/last-edits
HTML Testing - Final Adjustments
2 parents e00327a + 1a58618 commit 615f854

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

responses/11-link-css.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
You may be wondering why your page hasn't looked exactly the same as the sample I showed in the beginning. That's because HTML gives your webpage structure, but the simple tags you have learned so far don't tell the web browser how you want each page element to appear.
44

5-
The appearance of each page element is defined through styles and is the subject of another course. For now, I have added a stylesheet for you. You can check it out here: https://github.com/{{ user.username }}/{{ repo }}/blob/master/style.css
5+
The appearance of each page element is defined through styles and is the subject of another course. For now, I have added [a stylesheet](https://github.com/{{ user.username }}/{{ repo }}/blob/add-style/style.css) for you.
66

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

@@ -22,7 +22,7 @@ As an example, your `index.html` file might look like this:
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. Inside the <head> tag, add the following `<link rel="stylesheet" href="styles.css">`.
25+
1. Between the `<head>` tags, add the following `<link rel="stylesheet" href="styles.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

responses/12-big-finish.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ You've learned the basics of HTML, and used it to build a simple webpage.
66

77
Though this works, there's still more you can do to make sure you're up to date with standard conventions, like using an HTML validator.
88

9-
Here's an example, using your current website: https://validator.w3.org/nu/?showsource=yes&doc=https://{{user.username}}.github.io/{{repo}}/
10-
9+
<h3 align="center"><a href="https://validator.w3.org/nu/?showsource=yes&doc=https://{{user.username}}.github.io/{{repo}}/">See validation</a></h3>
1110

1211
If you'd like, you can make your fancy new page the default start page for your web browser. Just follow the links below for more information:
1312

0 commit comments

Comments
 (0)