+ 2
Attributes
which attribute specified to open the linked document?
2 Answers
+ 2
If you're linking to another document, you'll want to use the anchor tags <a></a> and the attribute will be 'href' to specify the document being linked to.
EXAMPLE:
<a href="https://www.SoloLearn.com">SoloLearn Rocks!</a>
If you're talking about linking a CSS document to your HTML document, then you'll use the <link> tags for it and specify the location via the 'href' attribute.
EXAMPLE:
<link rel="stylesheet" type="text/css" href="Style.css">
+ 1
tq