TOPIC 4 Flashcards
(85 cards)
provide an easy way to present information in an organized manner.
Lists
What are the two types of lists in HTML
ordered lists (for numbered items)
unordered lists (for bulleted items)
An _______ starts with the tag.
Each list item starts with the tag. The list items will be marked with bullets (small black circles) by default
Unordered List (<ul>)
What are the unordered list styles
Disc
Circle
Square
None
It is a unordered list style that sets the list item marker to a bullet (default)
Disc
It is a unordered list style that sets the list item marker to a circle
Circle
It is a unordered list style that Sets the list item marker to a square
Square
It is a unordered list style that The list items will not be marked
None
starts with the <ol> tag. Each list item starts with the <li> tag.
An ordered list (<ol>)
The list items will be marked with numbers by default, an _______ will start counting from 1. If you want to start counting from a specified number, you can use the start attribute.
An ordered list (<ol>)
What are the ordered list types
type= “1”
type= “A”
type= “a”
type= “I”
type=”i”
It is a ordered list type that list items will be numbered with numbers (default).
type= “1”
It is a ordered list type that list items will be numbered with uppercase letters.
type= “A”
It is a ordered list type that list list items will be numbered with lowercase letters. It is a ordered list type that list
type= “a”
It is a ordered list type that list items will be numbered with uppercase roman numbers.
type= “I”
It is a ordered list type that list items will be numbered with lowercase roman numbers.
type= “i”
Enumerate the list tags
< ul >
< ol >
< li >
< dl >
< dt >
< dd >
Defines an unordered list.
<ul>
</ul>
Defines a list item.
<li>
</li>
Defines an ordered list.
<ol>
</ol>
Defines a description list.
<dl>
</dl>
Defines a term/name in a description list.
<dt>
</dt>
Defines a description of a term/name in a description list.
<dd>
</dd>
are an essential part of web development that allow users to interact with a website by inputting and submitting data.
HTML Web Forms