Computer Science, asked by prabhatbarthwal159, 8 months ago

* Give the title to the web page “My Webpage”. * Apply H1 to ‘SWATCHH BHARAT ABHIYAAN’. * Apply H2 to ‘Clean India, Green India’. * Insert a horizontal line between H1 and H2. * Apply CSS properties to ** set the background color of the web page to 'Yellow". ** set color of H1 to "Red" and H2 to "Green". ** set background color of HR to "Blue" and height to 3%. ** set font size of H1 and H2 to 80 px.
after writing send photo​

Answers

Answered by Imblank
2

Answer:

<!DOCTYPE html>

<html>

<head>

<title>My Webpage</title>

<style type="text/css" media="all">

body{

background-color: yellow;

}

h1{

background-color: red;

font-size: 80px;

}

h2{

background-color: green;

font-size: 80px;

}

hr{

border:3px solid blue;

}

</style>

</head>

<body>

<h1>SWATCHH BHARAT ABHYAN</h1>

<h2>Clean India,Green India</h2>

<hr>

</body>

</html>

Read my bio and follow me

Answered by Anonymous
1

Answer:

here's your answer

Explanation:

hope it helps you

Attachments:
Similar questions