Tools, FAQ, Tutorials:
HTML Un-ordered List 'ul' Tag/Element
What Is a "ul" Tag/Element?
✍: FYIcenter.com
A "ul" element is block level element that can be used to define an un-ordered list, where items are displayed with leading bullets. Here are basic rules about "ul" elements:
Below is a good tutorial example of "ul" elements:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Un-ordered Lists</title> </head> <body> <p>Random quotations:</p> <ul> <li>The best advice is this: Don't take advice and don't give advice.</li> <li>Attitude is a little thing that makes a big difference.</li> <li>When dealing with people, remember you are not dealing with creatures of logic, but creatures of emotion.</li> </ul> </body> </html>
If you save the above document as unordered_list.html, and view it with Internet Explorer, you will see a list of items with leading bullets as shown below:
⇒ HTML Definition List 'dl' Tag/Element
2017-05-29, 1490🔥, 0💬
Popular Posts:
Where to find tutorials on Microsoft Azure services? Here is a large collection of tutorials to answ...
Where to get a real Atom XML example? You can follow this tutorial to get a real Atom XML example: 1...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...