HTML Links
HTML links are defined with the <a>
tag:
<!DOCTYPE html>
<html>
<body>
<h2>HTML Links</h2>
<p>HTML links are defined with the a tag:</p>
<a href="https://mundherohan.blogspot.com/">This is a link</a>
</body>
</html>
The link's destination is specified in the href
attribute.
Attributes are used to provide additional information about HTML elements.
HTML Images
HTML images are defined with the <img>
tag.
The source file (src
), alternative text (alt
), width
, and height
are provided as attributes:
<!DOCTYPE html><html><body><h2>HTML Images</h2><p>HTML images are defined with the img tag:</p><img src="rohanmundhe.jpg" alt="rohanmundhe.com" width="104" height="142"></body></html>