HTML is a markup language. HTML stands for Hyper Text Markup Language
<!DOCTYPE>Represents Document Type, this helps browsers to display webpages correctly. HTML5 format
<!DOCTYPE html>.
<h1> content to be displayed </h1>
<p> content to be displayed </p>
<a href="url"> content to be displayed </a>
Let's see few examples:
<img src="path to image" alt="alternate name to display if image load fails" >
style
attribute on the tag
<p style="color:red;"> content to be displayed </p>
content to be displayed
iframe Tag
<iframe src="url or content to display" title="description"/>