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

Commit c43d656

Browse files
authored
point out places where we should point to relevant server
1 parent 1fdd1d7 commit c43d656

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

responses/09-add-links.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Great job with lists. Let's try adding some links, shall we?
1111
Hyperlinks allow people to navigate through pages on the web. Links are achieved with the anchor tag, `<a>`, and have two major components: the location they link to, and the content that should be linked. The location of the link is specified as a `href` attribute, and the content that should be linked can be specified between the opening and closing tags, like this:
1212

1313
```html
14-
<a href="https://github.com">This is a link to GitHub!</a>
14+
# TODO POINT TO RELEVANT SERVER <a href="https://github.com">This is a link to GitHub!</a>
1515
```
1616

1717
### :keyboard: Activity: Create links to your favorite sites
@@ -21,7 +21,7 @@ Hyperlinks allow people to navigate through pages on the web. Links are achieved
2121
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:
2222

2323
```html
24-
<li><a href="https://github.com">This is a link to GitHub!</a></li>
24+
# TODO POINT TO RELEVANT SERVER <li><a href="https://github.com">This is a link to GitHub!</a></li>
2525
```
2626

2727
1. In the _Commit changes_ section, enter a commit message that describes what you've done.

0 commit comments

Comments
 (0)