HTML Introduction


  • HTML5 version is used here.


What is HTML?

HTML is a Hyper Text Markup Language. HTML creates the structure of every web page. HTML code is run in the browser. It is used only in website creation. The structure of this language looks like this



HTML Introduction



html page

Example

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Document</title>
</head>
<body>
	<h1>Hello World!</h1>
</body>
</html>