Computer Science, asked by harshkataria7723, 5 hours ago

design a webpage on supermarket using HTML. make it simple not too complicated .

Answers

Answered by Aryansingh001
0

Answer:

<!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>

Explanation:

Similar questions