Q.No.1 - Create an HTML file (e.g. first_page.html) that specifies a page that contains heading and two paragraphs of text.

Sol.- We have to create a html file with heading and two paragraphs. Here is the Code :

<html>
<head>
<title>Sample Page</title>
</head>
<body>
<h1>COMPEXAM</h1>
<p>Here we create the first paragraph. As you see in question they ask you to create a page one heading a
two paragraph.This is the first paragraph of that page. Its depend on you what text you want to add.</p> <p>This is the second paragraph of this page. This is basic question. Make sure you practice from basic
higher level. Practice evey day it will help you. Choose differnt topic every day.</p> </body> </html>

OUTPUT: