Menu

HTML TUTORIALS - HTML Lists

HTML Lists

ADVERTISEMENTS


<center>
<h2>Movie List</h2>
</center>
<ul>
<li>Ram Teri Ganga Meli</li>
<li>Mera Naam Jocker</li>
<li>Titanic</li>
<li>Ghost in the ship</li>
</ul>

ADVERTISEMENTS

Movie List

  • Ram Teri Ganga Meli
  • Mera Naam Jocker
  • Titanic
  • Ghost in the ship

ADVERTISEMENTS

Movie List


<ul type="square">
<ul type="disc">
<ul type="circle">

<ul type="square"><ul type="disc"><ul type="circle">
  • Hindi
  • English
  • Maths
  • Physics
  • Hindi
  • English
  • Maths
  • Physics
  • Hindi
  • English
  • Maths
  • Physics


<center>
<h2>Movie List</h2>
</center>
<ol>
<li>Ram Teri Ganga Meli</li>
<li>Mera Naam Jocker</li>
<li>Titanic</li>
<li>Ghost in the ship</li>
</ol>

Movie List

  1. Ram Teri Ganga Meli
  2. Mera Naam Jocker
  3. Titanic
  4. Ghost in the ship

Movie List


<ol type="I"> - Upper-Case Numerals.
<ol type="i"> - Lower-Case Numerals.
<ol type="a"> - Lower-Case Letters.
<ol type="A"> - Upper-Case Letters.

<ol type="I"><ol type="i"><ol type="a"><ol type="A">
  1. Hindi
  2. English
  3. Maths
  4. Physics
  1. Hindi
  2. English
  3. Maths
  4. Physics
  1. Hindi
  2. English
  3. Maths
  4. Physics
  1. Hindi
  2. English
  3. Maths
  4. Physics


<center>
<h2>Movie List</h2>
</center>
<ol start="5">
<li>Ram Teri Ganga Meli</li>
<li>Mera Naam Jocker</li>
<li>Titanic</li>
<li>Ghost in the ship</li>
</ol>

Movie List

  1. Ram Teri Ganga Meli
  2. Mera Naam Jocker
  3. Titanic
  4. Ghost in the ship

Movie List


<dl>
<dt><b>HTML</b></dt>
<dd>This stands for Hyper Text Markup Language</dd>
<dt><b>HTTP</b></dt>
<dd>This stands for Hyper Text Transfer Protocol</dd>
</dl>

HTML
This stands for Hyper Text Markup Language
HTTP
This stands for Hyper Text Transfer Protocol