Recent

6/recent/ticker-posts

HTML (13) part 1

HTML (13)


Part 1


The Economist explains - What is code? | The Economist explains ...



Attribute (LIST TAG)
  1. UNNUMBERED LIST
  2. NUMBERED LIST


Numbered list : Normally browser  automatically number the list with Arabic numeral 1.

To start numbering a list from 6 ↓↓↓

<ol start = 6>
<li>cake
<li>apple
<li>ball
</ol>

Eg ↓↓↓↓
<html>
<head>
<title>Sample Page </title>
</head>
<body>
<ol start = 6>
<li>cake
<li>apple
<li>ball
</ol>
</body>
</html>

Post a Comment

0 Comments