Create a web page using HTML on Independence Day Celebration 2021 based
on the following instructions.
1. The title of the page should be DPS, Pune.
2. Assign a background color to the webpage of your choice.
3. The headings [any heading level] used should be of font Engravers MT and
the content should be of font Constantia, size 4.
4. Insert 3 paragraphs of orange, white and green, respectively.
5. Insert a horizontal rule of color dodgerblue and size 5 at the beginning of
first paragraph and towards the end of the third paragraph.
Answers
Answer:
9. ਗੁਣਨਖੰਡ ਰੁੱਖ ਪੂਰੇ ਕਰੋ। ( Complete the actor tree 60 (a) * 10
Answer:
Copy and Paste the below HTML code in any editor/IDE(notepad++, sublime text etc) and save it with .html extension . Then open it in any browser(like chrome, firefox etc) to see the output.
Explanation:
<!doctype html>
<html>
<head>
<title>DPS, Pune</title>
<style>
body{
background-color:#d7def0;
font-family:Constantia;
}
h4{
font-family: Engravers MT;
font-size: 4;
}
#first{
color: orange;
font-size: 25px;
}
#second{
color:white;
font-size: 25px;
}
#third{
color:green;
font-size: 25px;
}
</style>
</head>
<body>
<h4>Independence Day Celebration</h4>
<hr color="dodgerblue" size="5"/>
<p id="first">India got it's independence on 15th August 1947</p><br/>
<p id="second">It is celebrated as the national festival of India.</p><br/>
<p id="third">This great day reminds the sacrifices made by our brave freedom fighters</p>
<hr color="dodgerblue" size="5"/>
</body>
</html>
#SPJ3