xxxxxxxxxx
<ol> <!--ordered in numbers-->
<li>number 1</li>
<li>number 2</li>
<li>number3</li>
</ol>
<ol type="A"> <!--ordered in letters-->
<li>number 4</li>
<li>number 5</li>
<li>number6</li>
</ol>
xxxxxxxxxx
Unordered list
<ul>
<li>something</li>
</ul>
Ordered list
<ol>
<li>something</li>
</ol>
xxxxxxxxxx
<dl>
<lh>dl Header</lh>
<dt>Term</dt>
<dd>Definiton</dd>
<dt>Term</dt>
<dd>Definition</dd>
</dl>
xxxxxxxxxx
<!-- Unordered List -->
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<!-- Ordered List -->
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<!-- Description List -->
<dl>
<dt>Term 1</dt>
<dd>Description 1</dd>
<dt>Term 2</dt>
<dd>Description 2</dd>
<dt>Term 3</dt>
<dd>Description 3</dd>
</dl>
xxxxxxxxxx
<!-- UnOrdered Lists -->
<ul>
<li>Java</li>
<li>Python</li>
<li>C++</li>
</ul>
<!-- Ordered Lists -->
<ol>
<li>Asmaa</li>
<li>Heba</li>
<li>Menna</li>
</ol>
xxxxxxxxxx
The basic elements of an HTML page are:
A text header, denoted using the <h1>, <h2>, <h3>, <h4>, <h5>, <h6> tags.
A paragraph, denoted using the <p> tag.
A horizontal ruler, denoted using the <hr> tag.
A link, denoted using the <a> (anchor) tag.
A list, denoted using the <ul> (unordered list), <ol> (ordered list) and <li> (list element) tags.
An image, denoted using the <img> tag
A divider, denoted using the <div> tag
A text span, denoted using the <span> tag
xxxxxxxxxx
<a href="" rel="" target=""></a>
<abbr></abbr>
<div></div>
<span></span>
<html></html>
<head></head>
<body></body>
<ul></ul>
<ol></ol>
<lh></lh>
<li></li>
<table></table>
<input type="" />
<meta http-equiv="" name="" content="" charset="" />
<title></title>
<thead></thead>
<dir></dir> WARNING: Don't use the dir tag. Use the ul tag instead.
<tbody></tbody>
<tr></tr>
<th></th>
<pre></pre>
<p></p>
<nav></nav>
<main></main>
<header></header>
<h1></h1>
<h2></h2>
<h3></h3>
<h4></h4>
<h5></h5>
<h6></h6>
<footer></footer>
<i></i>
<b></b>
<u></u>
<style></style>
<link type="" rel="" href="" />
<img src="" alt="" srcset="" width="" height="" />
<q></q>
<script src="" type="" defer></script>