TUTORIAL HTML :Lists
Sample of the pdf document :
HTML lists
appear in web browsers as bulleted lines of text. There are actually three
different types of HTML lists, including unordered lists (bullets), ordered
lists (numbers), and definition lists (think: dictionaries). Each list type
utilizes its own unique list tag, which we'll demonstrate below.
HTML List Item
Code:
<body>
<ul>
<li>I am a list item!>
<li>I am a list item too!>
<li>I am a list item also!>
</ul>
</body>
HTML List Items:
·
I am a list item!
·
I am a list item
too!
·
I am a list item
also!
The actual
list tags themselves, such as <ul>, are nothing but container elements
for list items (<li>). They work behind the scenes to identify the
beginning and ending of an HTML list element.............
Click here for free Download / PDF

0 commentaires: