please help me
Give me HTML code
Answers
Heya,
Here is your answer...
↓↓↓↓↓↓↓↓↓↓
→UNORDERED LIST...
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Example - Disc
<ul style="list-style-type:disc;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Example - Circle
<ul style="list-style-type:circle;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Example - Square
<ul style="list-style-type:square;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Example - None
<ul style="list-style-type:none;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
→ORDERED LIST...
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
Numbers:
<ol type="1">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
Uppercase Letters:
<ol type="A">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
Lowercase Letters:
<ol type="a">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
Uppercase Roman Numbers:
<ol type="I">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
Lowercase Roman Numbers:
<ol type="i">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
→DEFINITION LIST...
The <dl> tag defines the description list, the <dt> tag defines the term (name), and the <dd> tag describes each term:
Example
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
------------------------------------------------
I hope it helps you...
------------------------------------------------
Sample HTML code:
<html>
<head>
<title>Ordered List : Lowercase Romans</title>
</head>
<body>
<h1>Types of Lists in HTML</h1>
</br>
<ol type="i">
<li>Ordered List</li>
<li>Unordered List</li>
<li> Definition List</li>
</ol>
</body>
</html>