You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 1, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: responses/00-openapr.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,9 @@ It's not very special looking yet, is it? Web hosts (and GitHub Pages) look for
8
8
9
9
To help you get started, I have already created an `index.html` file for you on a branch called: `add-index`. All you need to do is create the pull request:
10
10
11
-
1. Create a pull request. You can either [use this direct link](https://github.com/{{ user.username }}/{{ repo }}/compare/master...add-index?expand=1), or go to the "Code" tab, click on **New Pull Request**, select **base: master**, and **compare: add-index**.
11
+
1. Create a pull request. You can either [use this direct link](https://github.com/{{ user.username }}/{{ repo }}/compare/master...add-index?expand=1), or go to the **Code** tab, click on **New Pull Request**, select **base: master**, and **compare: add-index**.
12
12
1. Add a descriptive title to your pull request, something like "Add the index.html file".
Copy file name to clipboardExpand all lines: responses/05-h1-tag.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Headers create prominent text in the body of your web page. Headers come in diff
12
12
13
13
14
14
1. Edit the `index.html` file in your master branch by [using this direct link](https://github.com/{{ user.username }}/{{ repo }}/edit/master/index.html) or going to the **Code** tab, clicking on the `index.html` file, clicking the pencil :pencil: to edit the HTML.
15
-
1.Inside the body tag, add an opening `<h1>` tag, some content for the header, and a closing `</h1>` tag.
15
+
1.Between the body tags, add an opening `<h1>` tag, some content for the header, and a closing `</h1>` tag.
16
16
1. In the _Commit changes_ section, enter a commit message that describes what you've done.
17
17
1. Ensure you've selected _Create a new branch for this commit and start a pull request_.
18
18
1. Give your branch a descriptive name, like `add-headers-and-images`.
Copy file name to clipboardExpand all lines: responses/09-add-links.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,12 @@ Hyperlinks allow people to navigate through pages on the web. Links are achieved
18
18
19
19
1. Click on **Files Changed**.
20
20
1. Click on the :pencil: pencil icon to edit the file.
21
-
1. Link each of your favorite sites to their respective URLs. You can do this by adding an opening anchor tag `<a>` tag with `href` attribute with your favorite site's URL, the name of the site inside the anchor tag, and a closing anchor `</a>` tag.
21
+
1. In the list you just created, add a link to each of your favorite sites to their respective URLs. You can do this by adding an opening anchor tag `<a>` tag with `href` attribute with your favorite site's URL, the name of the site inside the anchor tag, and a closing anchor `</a>` tag. Here is an example of a list item with a link:
22
+
23
+
```html
24
+
<li><ahref="https://github.com">This is a link to GitHub!</a></li>
25
+
```
26
+
22
27
1. In the _Commit changes_ section, enter a commit message that describes what you've done.
Copy file name to clipboardExpand all lines: responses/12-big-finish.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,14 @@
2
2
3
3
Well done @{{ user.username }}, here is the finished result: https://{{user.username}}.github.io/{{repo}}/
4
4
5
-
You've learned the basics of HTML, and used it to build a simple webpage. 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:
5
+
You've learned the basics of HTML, and used it to build a simple webpage.
6
+
7
+
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.
8
+
9
+
Here's an example, using your current website: https://validator.w3.org/nu/?showsource=yes&doc=https://{{user.username}}.github.io/{{repo}}/
10
+
11
+
12
+
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:
0 commit comments