What Is HTML?

HTML is a language to make websites that is some what complicated to learn. If you want to learn it here I give you some examples.

<!doctype html>
<html lang="en">
<head>
<title>your title here</title>
 </head>
<body>
 </body>
</html>

Add header

you can add header by using
<h1>your header</1>

there also smaller types h1 to h6

hello h1

hello h2

hello h3

hello h4

hello h5
hello h6

Add paragraph

if you want to add paragraph just use

<p>your paragraph</p>