Which one of the following is not an attribute of tag:
i) NAME
ii) HREF
iii) Source
iv) Both (i) & (ii)
Answers
Answered by
3
'Source' is not an attribute of tag.
(i) Name:
⇒ It specifies name for an element.
<html>
<body>
<form>
<label>Name:</label>
<input type = "text" name="Name" />
</form>
</body>
</html>
(ii) HREF:
⇒ It specifies the URL for any kind of link.
<html>
<body>
<a href="https://www.brainly.in">Brainly.in</a>
</body>
</html>
Hope it helps!
Similar questions