+ 1
what does herf stands for???
5 Answers
+ 6
The href* attribute specifies the URL of the page the link goes to. It is used in the <a> tag.
If the href attribute is not present, the <a> tag is not a hyperlink.
<a href="URL">
Possible values of the URL:
An absolute URL - points to another web site (like href="http://www.example.com/default.htm")
A relative URL - points to a file within a web site (like href="default.htm")
Link to an element with a specified id within the page (like href="#top")
Other protocols (like https://, ftp://, mailto:, file:, etc..)
A script (like href="javascript:alert('Hello');")
- Dumitru
If this answer has helped you, give it a upvote by pressing the button that looks like an thumbs up (like).
+ 5
href stands for hypertext reference
+ 1
oki
0
Cool
0
How to make a button link