Computer Science, asked by nidhinoida8, 8 months ago

Sushma, a we designer working with Global Designers, is supposed to design a web page shown below: Write the HTML code to design the below shown web page considering the specifications as given below: i. image named taj.jpg sshould be placed in the center of web page. ii. Heading “The Taj Mahal” should be first level of heading and underlined. iii. Apply following formatting styles: font color – blue, size is 5 and font type is Arial.

Answers

Answered by Alokakul123465
7

Answer:

This is the program:

<html>

<head>

<title>Taj Mahal</title>

<style type="text/css">

.main{text-align:center;

font-color:blue;

font-size:5;

font-style:Arial;

}

</style>

</head>

<body>

<div class="main">

<h1>The Taj Mahal</h1>

<div id="image">

<img scr="taj.jpg"></img>

</div>

</div>

</body>

</html>

I hope this helps :)

Pleas mark my answer as the brainliest!!

Similar questions