Computer Science, asked by debdeep95, 2 months ago

Create an HTML document containing the following specifications:

i. The title of the page should be Cricket.

ii. The background color of the page should be teal and the text should be in white.

iii. The page should contain a heading “ALL ABOUT CRICKET” written with the font

style “Calibri” ,size 15 and color “yellow”.

iv. The page should contain an ordered list of 5 of your favourite cricket players.

v. The page should also contain an unordered list of 5 of your favourite cricket teams.

vi. There should be a horizontal rule separating the two lists.​

Answers

Answered by nrk20082008
1

<head><title>Cricket</title>

<style>

body{

  background: teal;

color: white;

}

h2{

font-family: calibri;

font-size: 15px

}

</style>

</head>

<body>

<h1>ALL ABOUT CRICKET</h1>

<hr>

<ol>

<li>Your players</li>

<li>Your players</li>

<li>Your players</li>

<li>Your players</li>

<li>Your players</li>

</ol>

<hr>

<ul>

<li>Your players</li>

<li>Your players</li>

<li>Your players</li>

<li>Your players</li>

<li>Your players</li>

</ul>

</body>

Similar questions