Update index.md (#21125)

Added a missing " in line 28.
pull/34123/head
Danny 2018-11-01 03:32:56 -04:00 committed by Manish Giri
parent 8ada0fb6f8
commit 36652a74f3
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ If you'd like your link to open in a new tab, you'll use the ```code target``` a
When you need to guide users to a specific part of your webpage, let's assume the very bottom, you first need to assign the hash ```code #``` symbol to the ```code href``` attribute, like this
```html
<a href="#footer>More about us<a/>
<a href="#footer">More about us<a/>
```
you'll then need to use an ```code id``` attribute in the element you want to direct your user to - in this case the ```code <footer>``` at the bottom of the webpage.