HTML PARAGRAPHS
HTML paragraphs are defined with the <p> tagCode
<p>This is a paragraph.</p>Output
HTML LINKS
HTML links are defined with the <a> tag
Code
<a href="http://webtech100.blogspot.com/">This is a link</a>
Output
HTML IMAGES
HTML images are defined with the <img> tag.
The source file (src), alternative text (alt), and size (width and height) are provided as attributes
Code
<img src="webtech.jpg" alt="webtech100.blogspot.com" width="500" height="230">