HTML Hello World Example
HTML Hello World example introduces how HTML works.
Here is the example code, where we have included a heading element to display the heading on the HTML document.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Hello World!!</h1>
</body>
</html>
Overall
This example helps us understand the basic HTML example code.