What is HTML?
Hyper Text Markup Language is what HTML is. The preferred markup language for building Web pages is HTML. A Web page's structure is described in HTML. A number of elements make up HTML. The content's presentation in the browser is controlled by HTML elements.
Our 'try it yourself code' editor makes it simple to understand the code. You may read, modify, and write your own code.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Click on the "Try it Yourself" button to see how it works.