Update index.html - #6
Conversation
| <ol> | ||
| <li>This</li> | ||
| <li>is</li> | ||
| <li>Ordered</li> |
There was a problem hiding this comment.
Step 10: Add links to your list
✅ Check
✅ That
✅ Off your list!
Great job with lists. Let's try adding some links, shall we?
About hyperlinks
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:
```
<li><a href="https://github.com">This is a link to GitHub!</a></li>
```
⌨️ Activity: Create links to your favorite sites
Apply this suggested change, or follow the instructions below if you'd like to type out the code manually. Please note that the suggested change may not be in the proper place for your list, so make sure it is inside of a set of <ol> or <ul> tags.
| <li>Ordered</li> | |
| <li>My favorite site is <a href="https://github.com">GitHub</a>!</li> |
-
Click on Files Changed.
-
Click on the ellipsis (...) and select Edit file.
-
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 withhrefattribute 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:<li><a href="https://github.com">This is a link to GitHub!</a></li> -
In the Commit changes section, enter a commit message that describes what you've done.
-
Click on Commit changes.
I'll respond when I detect you've committed in this pull request.
There was a problem hiding this comment.
Step 11: Merge your third pull request
Those links are looking great, @DevilsKingX.
Go ahead and merge this pull request. Don't forget to delete your branch!
⌨️ Activity: Merge the list and links
- Click on Merge pull request below.
- Click on Confirm merge.
- Click on Delete branch.
I'll respond when you've merged this pull request.
There was a problem hiding this comment.
Step 11: Merge your third pull request
Those links are looking great, @DevilsKingX.
Go ahead and merge this pull request. Don't forget to delete your branch!
⌨️ Activity: Merge the list and links
- Click on Merge pull request below.
- Click on Confirm merge.
- Click on Delete branch.
No description provided.