Computer Science, asked by ykrishnakant384, 3 months ago

create asimple web page of your choise that have following
center align heading
horizontal line under the heading
a background image
different text colur and size
ir a hyperlink

Answers

Answered by Wahib2247
0

Answer:

<!DOCTYPE html>

<html>

<style>

body {

background-image: url("image url");

}

h1 {

text-align: center;

}

h2 {

color: red;

}

h3 {

color: yellow;

}

</style>

<head>

<meta name="viewport" content="width=device-width, initial-scale=1" />

</head>

<body>

<h1>This is heading</h1>

<hr>

<br>

<h2>some text. ..</h2>

<h3>some text</h3>

<br>

<a href=#>link</a>

</body>

</html>

Similar questions