Minor grammatical (#28376)

Previously used "this case" to refer to two possible cases.
This commit is contained in:
Vruchi
2018-12-11 14:08:19 -07:00
committed by Randell Dawson
parent 53c17269bc
commit d6ed7f75b9

View File

@ -4,7 +4,8 @@ title: A Href Attribute
## A Href Attribute ## A Href Attribute
The `<a href>` attribute refers to a destination provided by a link. The `a` (anchor) element is dead without the `<href>` attribute. Sometimes in your workflow, you don't want a live link or you won't know the link destination yet. In this case, it's useful to set the `href` attribute to `"#"` to create a dead link. The `href` attribute can be used to link to local files or files on the internet.
The `<a href>` attribute refers to a destination provided by a link. The `a` (anchor) element is dead without the `<href>` attribute. Sometimes in your workflow, you don't want a live link or you won't know the link destination yet. In cases like these, it's useful to set the `href` attribute to `"#"` to create a dead link. The `href` attribute can be used to link to local files or files on the internet.
For instance: For instance: