5 What is the main element that we have to include to create
5. What is the main element that we have to include to create web page?
Solution
example: <!DOCTYPE html>
<html>
<head>
<title>Sample Page</title>
</head>
<body>
<h1> Heading</h1>
<p> paragraph</p>
</body>
</html>
