Computer Science, asked by ParvSrivastava, 5 months ago

Write the HTML code by using following instructions:
a) Title of the page is Online Classes.
b) Body bgcolor is red.
c) Font size 5and color is yellow
d) Use H1 to H6 heading for six subject.
e) Give bold and italic effect to the paragraph.
if you become the first person to answer this question, then you will get a branliest mark (Only if the answer is correct).

Answers

Answered by maazxmomin123
2

Answer:

<!DOCTYPE html>

<html>

<head>

<title>Online Classes</title>

</head>

<body>

<h1>Online Classes</h1>

<h2>Are there</h2>

<h3>On 10 oclock</h3>

<h4>History</h4>

<h5>Geography</h5>

<h6>Hindi</h6>

<p><bold>Paragraph</bold></p>

<style type="text/css">

body

{

 background-color: red;

 font-size: 5px;

 font-color: yellow;

}

</style>

</body>

</html>

Explanation:

Similar questions