Computer Science, asked by anakhwal396, 5 months ago

Write the HTML code of the following webpage :
Note the following points while generating the Webpage:
Link colour is black, background colour is yellow and visited link colour is green
Image used is "elephant.png".
Caption of table is blue Table border is blue and of size 2.
The 4 links are one.html, two.html, three.html and four.html
INDIAN ELEPHANT
Bandar​

Answers

Answered by hrastogi374
0

Answer:

<html>

<head><title></title>

<style>

ul{

}

ul li{

background-color:yellow;

}

ul li a{

text-decoration:none;

color:black;

}

ul li a:hover{

color:green;

}

table{

border:2px solid blue;

}

</style>

</head>

<body>

<ul>

<li id="li-1"><a href=""></a></li>

<li id="li-2"><a href=""></a></li>

<li id="li-3"><a href=""></a></li>

<li id="li-4"><a href=""></a></li>

</ul>

</body>

<table>

<tr><th><img src="elephant.png"></img></th></tr>

<tr><th><a href="one.html"></img></th></tr>

<tr><th><a href="two.html"></th></tr>

<tr><th><a href="three.html">elephant</th></tr>

<tr><th><a href="four.html">bandar</th></tr>

</table>

</html>

now you can place it where ever you want or in any order

Similar questions