HTML – Hyper text markup language
It is the standard markup language used to describe and create webpages.
It describe the structure of a webpage
HTML elements tell the browser what to display and how to display the content on the webpage
“<” opening/start tag
“>” closing/end tag
“<html>” element – everything within a opening and closing tag
A HTML page structure
<html>
<head>
<title>This is a title
</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>this is another paragraph</p>
</body>
</html>
HTML Elements
<html>
<head>
<body>
<title>
<h1> to <h6>
<p>
<b>
<i>