Skip to main content

The basic HTML structure

HyperText Markup Language (HTML) is the standard markup language for creating web pages and web applications. There is an algorithm of this language. Given below the basic structure of HTML language




<html>
<head>
<title>Your title </title>
</head>
<body>
<h1>Heading 1</h1>
<p>your paragraph</p>
<h2>heading 2 (smaller than heading 1)</h2>
<p>paragraph under heading 2</p>
</body>
</html>

Comments