Skip to main content

lists

 HTML Provides Three Types of Lists .


  • Ordered List - Ordered list are lists where each item in the list is numbered.
  • Unordered List - Unordered lists that begin with a bullet point.
  • Definition List - Definition Lists are made up a set of terms along with the definition for each of those terms. 



Ordered Lists

<ol>

The Ordered list is created with <ol> element.

<li>

each item in the list is palaced between opening <li> tag and closing </li> tag. <li> stands for list items.
Browsers indent lists by default.



Unordered List

<ul>

The Unordered list is created with <ul> element.

<li>

each item in the list is palaced between opening <li> tag and closing </li> tag. <li> stands for list items.
Browsers indent lists by default.

Definition list

<dl>

The definition list is created with <dl> element. inside <dl> element we use <dt> and <dd> elements.

<dt>

This is used to contain the term being defined (the definition term)

<dd>

This is used to contain the defination.



Nested Lists

You can put a second list inside an <li> element to create a sub- list or nested list.



I Hope you like this

Comments

Popular posts from this blog

HOW PEOPLE ACCESS THE WEB

" THE MAIN FACTORS THAT ARE IMPORTANT IN ACCESS THE WEB 1. BROWSER In order to view a web page, users might type a web address into their browser. 2. WEB SERVERS When we requested a web page, the request sent to a computer known as the webserver which hosts the website. 3. DEVICE It is important to remember that various devices have different screen sizes and some have faster connections to the web than others. 4. SCREEN READERS Screen readers are the program that read out the content of a computer screen to a user. They are commonly used by people with visual impairment. Thanks for visiting my blog. I will try to post regularly. For more blogs related to technology you can visit Relatetechno.codes

summary For Structure

Summary HTML pages are text documents. HTML uses tags (characters that sit inside angled brackets) to give the information they surround special meaning. Tags are often referred to as elements. Tags usually come in pairs. The opening tag denotes the start of a piece of content; the closing tag denotes the end. Opening tags can carry attributes, which tell us more about the content of that element. Attributes require a name and a value. To learn HTML you need to know what tags are available for you to use, what they do, and where they can go. For more blogs related to technology you can visit Relatetechno.codes

ATTRIBUTES

ATTRIBUTES TELLS US MORE ABOUT ELEMENTS Attributes provide additional information about the contents of an element. They appear on the opening tag of the element and are made up of two parts: a name and a value , separated by an equals sign. HTML5 allows you to use uppercase attribute names and omit the quote marks, but this is not recommended. Attribute example 1 More about Attributes  The attribute name indicates what kind of extra information you are supplying about the element's content. It should be written in lowercase. The value is the information or setting for the attribute. It should be placed in double-quotes. Different attributes can have different values. Here an attribute called lang is used to indicate the language used in this element. The value of this attribute on this page specifies it is in US English. The majority of attributes can only be used on certain elements, although a few attributes (such as lang ) can appear on any element. Most attribute values are ...