English
Tamil Nadu Board of Secondary EducationHSC Science Class 11

Explain the types of list with suitable HTML code. - Computer Applications

Advertisements
Advertisements

Question

Explain the types of list with suitable HTML code.

Answer in Brief

Solution

HTML supports three types of lists viz. numbered, unnumbered and definition. These lists are called as Ordered List, Unordered List and Definition List respectively.

1. Numbered List/Ordered List:

Numbered list is created within the tag pair <OL> ….. </OL> tag. The tag <LI> is used to present the list item in the list. An ordered list displays items in numerical or alphabetical order. Both <OL> and <LI> tags are container tags.

An HTML code to demonstrate Numbered list:

<html>
<head>
<title> Number List </title>
</head>
<body>
<OL>
<LI> Tamil
<LI> Telgu
<LI> English
<LI> Computer Application
<LI> Commerce
<LI> Accountancy
<LI> Economics
</OL>
</body>
</html>

The OUTPUT will be:

Attributes of Ordered List:
There are two attributes can be used to customize ordered list, they are

Type – changing numbering style
Start – changing numbering order

Type:
Type is used to change the number style. The default number style is standard Arabic numerals (1,2,3,…. ).

Type value Numbering style
1 Standard Arabic Numerals 1,2,3,4..
a Lower case letters a, b, C, d
A Uppercase letter A, B, C, D.
i Lowercase Roman numerals
i, ii, iii, iv, v....
I Uppercase Roman numerals
I, II, III, IV, V....

Start:
Start is used to specify the number of letter with which start the list. The default starting point is 1. The value cf the start attribute should be a decimal number, regardless of the numbering style being used.

An HTML code to demonstrate of OL tag:

<html>
<head>
<title> Attribute of OL tag </title>
</head>
<body>
<OL type=i start=5>
<LI> Physics
<LI> Chemistry
<LI> Biology
<LI> Botany 
<LI> Zoology
</OL>
</body>
</html>

The OUTPUT will be:

2. Un-numbered List/Unordered List:

Unordered lists are often referred as bulleted lists. Instead of numbers, each element in the list has prefixed with a special bullet symbol.
Unordered list is surrounded within <UL> …….. </UL> tags.

An HTML code to demonstrate Unordered list:

<html>
<head>
<title> Unordered List </title>
</head>
<body>
<UL>
<LI> Chennai G Hr. Sec. School,
Rotler Street,
Chennai 600 112.
<LI> Karnakata Sanga Hr. Sec.
School, T. Nagar,
Chennai 600 017
<LI> S.M.B. Jain Hr. Sec. School,
T. Nagar, Chennai 600 017.
<LI> Chennai G Hr. Sec. School,
Nungambakkam,
Chennai 600 034.
<LI> Chennai G Hr. Sec. School,
Saidapet West,
Chennai 600 015.
<LI> Santhome Hr. Sec. School,
Mylapore, Chennai 600 004.
</UL>
</body>
</html>

The OUTPUT will be:

Attribute of Unordered List:
Like ordered list, type attribute is used to customize bullet style for the list of elements. By default, a solid circle is used as bullets

An HTML code to demonstrate Unordered list:

Type value Numbering style
Disc
  • A Solid circle
Square
  • A solid square
Circle
  • An unfilled circle

The OUTPUT will be:

<html>
<head>
<title> Attribute of UL tag </title>
</head>
<body>
<UL>
<LI> Chennai G Hr. Sec. School,
Rotler Street,
Chennai 600 112.
<LI> Karnakata Sanga Hr. Sec.
School, T. Nagar,
Chennai 600 017.
</UL>
<UL type=square>
<LI> S.M.B. Jain Hr. Sec. School,
T. Nagar, Chennai 600 017.
<LI> Chennai G Hr. Sec. School,
Nungambakkam,
Chennai 600 034.
</UL>
<UL type=circle>
<LI> Chennai G Hr. Sec. School,
Saidapet West,
Chennai 600 015.
<LI> Santhome Hr. Sec. School,
Mylapore, Chennai 600 004.
</UL>
</body>
</html>

The OUTPUT will be:

Definition List:

Definition list is different from other two types of list. No bullet or number is provided for the list items. In this list type, the list element has two parts.

  • A definition term
  • The definition description

Definition list is surrounded within <DL> …. </DL> tags.
Definition term is presented in between <DT> …. </DT> tag and
Definition description should be surrounded within <DD> …. </DD> tag.

An HTML code to demonstrate Definition list:

<html>
<head>
<title> Defination List </title>
</head>
<body>
<DL>
<DT> HTML: </DT>
<DD> Hyper Text Markup Lanuguage
</DD>
<DT> Webpage:
<DD> A web page is a document that is suitable
for the World Wide Web and web browsers. A web
browser displays a web page on a monitor or mobile
device. </DD>
</DL>
</body>
</html>

The OUTPUT will be:

shaalaa.com
HTML Table
  Is there an error in this question or solution?
Chapter 11: HTML - Formatting text, Creating Tables, List and Links - Evaluation [Page 266]

APPEARS IN

Samacheer Kalvi Computer Applications [English] Class 11 TN Board
Chapter 11 HTML - Formatting text, Creating Tables, List and Links
Evaluation | Q 3. | Page 266

RELATED QUESTIONS

Write HTML Code for the following table.


Briefly explain the attributes of <hr> tag.


What are the core tags used to create table in HTML?


Write an HTML code to provide hyperlink to https://www.w3schools.com.


Difference between <UL> and <OL> tags.


Explain the attributes used with <table> tag in HTML.


What is Link and explain the types of links.


Naveen went to an interview for the post of web developer. In the technical test, he was supposed to design an HTML table as given below. Help him to complete the table with the right statements in the blanks. Observe the table and attempt any four questions (out of 5) given after the table).

Futuristic Time Table
Period-No Monday Wednesday Friday
1 Robotics NLG NLU
2 Data Science   Sound
3 Light Machine Learning   
4 Speed   Velocity

 

<HTML>
<HEAD>
<TITLE> Table Concept </TITLE>
</HEAD>
<BODY>
<Table _________ =2> <!-STATEMENT-1>
<________> Futuristic Time Table</________> <!-STATEMENT-2>
<tr>
<th> Period-No </th>
<th> Monday </th>
<th> Wednesday </th>
<th> Friday </th>
</tr>
<tr>
<td> 1 </td>
<td________=2> Robotics </td> <!-STATEMENT-3>
<td> NLG </td>
<td>NLU </td>
</tr>
<tr>
<td> 2 </td>
<td> Data Science </td>
<td>Sound </td>
</tr>
<tr>
<td> 3 </td>
<td>Light </td>
<td______=2> Machine Learning </td> <!- STATEMENT-4>
</tr>
<tr>
<td> 4 </td>
<td> Speed </td>
<td></td>
<td> Velocity </td>
</tr>
<!- STATEMENT-5>
--------
--------
--------
  1. Write the attribute value to complete Statement-1 to achieve the output given in the above table.
  2. Write suitable option for the blanks given in Statement-2.
  3. Write the appropriate answer for the blank given in Statement-3
  4. Write the appropriate answer for the blank given in Statement-4
  5. What will be the complete sequence of closing the above html document in statement 5?

Arif works in a school as a web designer. He has been assigned the task of uploading the calendar of holidays for the month of March. He was supposed to design an HTML table for the same.

Help him to complete the table with the right statements in the blanks.

Observe the table and attempt any four questions (out of five) given after the table.

MARCH 2023
DAYS Mon Tue Wed Thu Fri Sat Sun
DATES 6 7 8 9 10 11 12
  14  

 

<html>
<head>
<title> </title>
</head>
<body>
<table>
<tr>
<td colopan = ______><!-STATEMENT-1 MARCH2023 </td>
</tr>
-------------------------------
<!-STATEMENT-2>
<th>DAYS</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th>Sat</th>
<th>Sun</th>
______<!-STATEMENT-3>
<tr>
<td ______ = 2><! - STATEMENT- 4>
DATES </td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
<td>11</td>
<td>12</td>
</tr>
<tr>
          <td></td>
          <td> ______   </td><!-STATEMENT-5>
</tr>
</table>
</body>
</html>
  1. Write the attribute value to complete Statement -1 to achieve the output as given in the above table.
  2. Write the tag to complete Statement -2 to achieve the output as given in the above table.
  3. Write the attribute value to complete Statement -3 to achieve the output as given in the above table.
  4. Write the attribute name to complete Statement -4 to achieve the output as given in the above table.
  5. Write the appropriate answer for the blank given in Statement -5 to achieve the output as given in the above table.

Observe the screenshot of the given web page:

Write suitable HTML code to design it.


Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×