write a html coding for the following output:
Attachments:
Answers
Answered by
4
Here is the Coding..
<html>
<head><title>Matter</title></head>
<body>
Types of matter are :
<ol type = "a">
<li> Solid
<li> Liquid
<li> Gas
</ol>
</body>
</html>
.
.
.
.
donazfarkhanssp1:
yes it help me
Answered by
3
Hi Mate,
Unfortunately, HTML format doesn't support tags like a), b),... but it supports tags like 1., 2.,... & •,...
here are some examples are how to put that tags;
→There are two types of tags,
(1) Ordered (1,2,3); and
(2) Unordered (•,*)
(1) Ordered
<OL>
<LI> Coffee <LI>
<LI> Milk </LI>
</OL>
OUTPUT:
1. Coffee
2. Milk
(2) Unordered
<UL>
<LI> Coffee </LI>
<LI> Milk </LI>
</UL>
OUTPUT:
•COFFEE
•MILK
HOPE THIS HELPS YOU......(✯ᴗ✯)
Similar questions