Q:

Create A HTML Page Of Different Type Of List (Like Ordered List or Unordered List)

belongs to collection: HTML Examples

0

Problem:- Create An HTML Page Of Different Type Of List (Like Create A List Using Number / Bubble/) And Give The Description About Any Topic. or Create An HTML Page Of Different Type Of List (Like Ordered List or Unordered List) or How many types of lists are there in HTML? or What tag is used to list individual items of an ordered list? or How do you create an ordered list in HTML? or What is UL and Li in HTML? or HTML Ordered, Unordered, and Definition Lists.

How to Solve:- There is no logic we just have to use the different types of the list on our web page. list are especially cause it makes our web page more attractive and eye-catching. Before going for direct use of list I recommended read the explanation section for better understanding the list(Ordered or unordered).

Explanation:- In this problem, we have to use all list, before using the list we have to know about the ordered list and unordered list. Below is the list description.

Ordered List or Numbered List (ol)
Unordered List or Bulleted List (ul)
Description List or Definition List (dl)

In the ordered HTML lists, all the list items are marked with numbers.
It is known as numbered list also.
The ordered list starts with <ol> tag and the list items start with <li> tag.

In HTML Unordered list, all the list items are marked with bullets.
It is also known as bulleted list also.
The Unordered list starts with <ul> tag and list items start with the <li> tag.

<dl> tag defines the start of the list.
<dt> tag defines a term.
<dd> tag defines the term definition (description).

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

List.html

<html>
<head>
<title>Type Of List</title>
</head>

<body bgcolor="green" >
<font size="18">
<ol>
 <li>C Language</li>
 <li>Java</li>
 <li>Html</li>
 <li>Oracle</li>
</ol>
<ul>
 <li>C Language</li>
 <li>Java</li>
 <li>Html</li>
 <li>Oracle</li>
</ul>
<dl>
  <dt>C language</dt>
  <dd>-it is a procedural anguage</dd>
  <dt>Java</dt>
  <dd>-it is object orinted programming</dd>
 <dt>Html</dt>
 <dd>-It is  stands for hyper text markup language</dd>
  <dt>Oracle</dt>
  <dd>-It is a multinational technology corporation.</dd>
</dl>
</font >
</body>
</html>

 

Output:

  1. C Language
  2. Java
  3. Html
  4. Oracle
  • C Language
  • Java
  • Html
  • Oracle
C language
-it is a procedural anguage
Java
-it is object orinted programming
Html
-It is stands for hyper text markup language
Oracle
-It is a multinational technology corporation.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Create a HTML Document Using Frame Which Should Sa... >>
<< Create an html page named as \" SimpleTags.ht...