HTML Lists
Unordered List:
- Item
 - Item
 - Item
 - Item
 
Ordered List:
- First item
 - Second item
 - Third item
 - Fourth item
 
Unordered HTML List
Example
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<ul>
 
<li>Coffee</li>
  <li>Tea</li>
 
<li>Milk</li>
</ul>
 
      
</body>
</html>
Disc
 
Sets the list item marker to a bullet (default)
Example
<ul style="list-style-type:disc">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>
 
Circle
Sets the list item marker to a circle 
Example
<ul style="list-style-type:circle">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul 
 
Square
Sets the list item marker to a square 
Example
<ul style="list-style-type:square">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>
None
 The list items will not be marked
Example
<ul style="list-style-type:none">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>
Ordered List
An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.
The list items will be marked with numbers by default:
Example
<ol>
 
<li>Coffee</li>
  <li>Tea</li>
 
<li>Milk</li>
</ol>
 
Numbers:
 The list items will be numbered with numbers (default)
<ol type="1">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>
 
Uppercase Letters:
 The list items will be numbered with uppercase letters
<ol type="A">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>
 
Lowercase Letters:
 The list items will be numbered with lowercase letters
<ol type="a">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>
 
Uppercase Roman Numbers:
 The list items will be numbered with uppercase roman numbers
<ol type="I">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>
 
Lowercase Roman Numbers:
 The list items will be numbered with lowercase roman numbers
<ol type="i">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>
 
Example
<!DOCTYPE html>
<html>
<head>
<style>
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;}
li {
    float: left;}
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;}
 
li a:hover {
    background-color: #111111;}
 </style>
</head>
<body>
<ul>
  <li><a href="#home">Home</a></li>
  <li><a href="#news">News</a></li>
  <li><a href="#contact">Contact</a></li>
  <li><a href="#about">About</a></li>
</ul>
</body>
</html>
 
 
 
 
 







						
0 comments:
Post a Comment