HTML Tutorial - e9SCHOOL

25 March 2020

HTML Tutorial

HTML is the standard markup language for Web pages

EXAMPLE OF SIMPLE HTML CODE
This is the back bone of html coding, every html code should contain this

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>