Revision Assignment_Grade 6_HTML_24_25
Revision Assignment_Grade 6_HTML_24_25
CLASS: 6
6. Write HTML code to create the following web page after considering the given
specifications:
• The title of the web page is “Seasons”
• Text – “WE WELCOME RAINY SEASON “ should appear in the biggest heading
• Draw a horizontal line across the web page.
• The text – “We see everyone enjoying the rain” should appear in bold and
underlined.
• In the next line –“Black clouds in the sky” should appear in italics.
• The text “flowers “ should appear in the upper textline of Beautiful
Answer
<html>
<head>
<title>SeasonS</title>
</head>
<body>
<h1>WE WELCOME RAINY SEASON </h1>
<hr>
<b><u>We see everyone enjoying the rain</u></b>
<br>
<i>Black clouds in the sky</i>
<br>
beautiful<sup>flowers</sup>
</body></html>