Design a webpage of your own interest with the following
specification.
• Background colour should be light pink.
• Heading should be in center and red in colour.
•There should be ordered and unordered list in webpage.
Answers
Answered by
0
<!DOCTYPE html>
<html>
<head>
<style>
.center {
text-align: center;
color: red;
}
</style>
</head>
<body style="background-color:lightpink;>
<h1 class="center">Red and center-aligned heading</h1>
<h1 class="center">Red and center-aligned heading</h1>
<b>ordered list</b>
<ol type="1">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<b>unordered list</b>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
</body>
</html>
Similar questions