in how many ways can you create a list? write the procedure to do so
PB182:
Lists can be created in many computer languages. HTML, Excel and many more. If u want a list to be made in HTML, we’ve got Unordered list, ordered list, description list and nested list. Excel also has options. Please specify.
Answers
Answered by
16
< html>
<body>
<UL TYPE="DISC">
<LI> .....
<LI>.......
<LI>......
</UL>
<OL TYPE=1 START=234>
<LI>...
<LI>.....
<LI>....
</OL>
</BODY>
</HTML>
HOPE IT WILL HELP U. . . . . . . . .
PLZ MARK MY ANSWER AS BRAINLIEST! ! ! ! ! ! !
☆NOTE:- ALL THE DATA I HV ENTERED CAN BE CHANGED,. DO IT ACC. TO U.
Answered by
9
Hi friend!
In HTML, you can create two types of lists. Ordered List and Unordered List.
The following are the tags and syntaxes for the codes.
Here, <ul> means Unordered List, <ol> means Ordered List & <li> means List Item.
<html>
<ol>
<li>...</li> (The </li> tag is not needed for HTML5)
<li>...</li>
<li>...</li>
</ol>
</html>
This was a simple list format.
<html>
<ul>
<li>...</li.
<li>...</li>
<li>...</li>
</ul>
</html>
Note: The dots between the two start and end <li> sub-tags can be replaced with your own matter. And you can add as many <li> tags as you want.
Hope you found my answer helpful. Keep Smiling!
In HTML, you can create two types of lists. Ordered List and Unordered List.
The following are the tags and syntaxes for the codes.
Here, <ul> means Unordered List, <ol> means Ordered List & <li> means List Item.
<html>
<ol>
<li>...</li> (The </li> tag is not needed for HTML5)
<li>...</li>
<li>...</li>
</ol>
</html>
This was a simple list format.
<html>
<ul>
<li>...</li.
<li>...</li>
<li>...</li>
</ul>
</html>
Note: The dots between the two start and end <li> sub-tags can be replaced with your own matter. And you can add as many <li> tags as you want.
Hope you found my answer helpful. Keep Smiling!
Similar questions