Computer Science, asked by swarabose, 1 year ago

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 keshrishi9898
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 AdiN05517
9
Hi friend!

&lt;b&gt;&lt;u&gt;&lt;big&gt;&lt;marquee direction="right" behavior="alternate"&gt;&lt;big&gt;Answer:&lt;/big&gt;&lt;/marquee&gt;&lt;/big&gt;&lt;/u&gt;&lt;/b&gt;

In HTML, you can create two types of lists. Ordered List and Unordered List.

&lt;b&gt;Ordered List:&lt;/b&gt; The list items would be numbered with 1, 2, 3, etc. You can change the type of numbering. Some numbering types are: 1, 2; A, B; i), ii); etc.&lt;br&gt;&lt;br&gt;&lt;b&gt;Unordered List:&lt;/b&gt; In unordered list, the list items would be highlighted/started with bullets like:&lt;ul type="disc"&gt;&lt;li&gt;This&lt;/li&gt;&lt;/ul&gt;&lt;hr size=3 color=#FF00FF&gt;
The following are the tags and syntaxes for the codes.
Here, <ul> means Unordered List, <ol> means Ordered List & <li> means List Item.

For &lt;b&gt;Ordered&lt;/b&gt; List:

<html>
<ol>
<li>...</li> (The </li> tag is not needed for HTML5)
<li>...</li>
<li>...</li>
</ol>
</html>

This was a simple list format.

Now, for the &lt;b&gt;Unordered&lt;/b&gt; List:

<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.
&lt;hr size=5 color="blue"&gt;
&lt;b&gt;Examples:&lt;/b&gt;
&lt;ol type="i"&gt;&lt;li&gt;This is an ordered list.&lt;/li&gt;&lt;li&gt;You can also create such lists now!&lt;/li&gt;&lt;li&gt;Let's move on with the next type of list.&lt;/li&gt;&lt;/ol&gt;&lt;be&gt;&lt;ul type="square"&gt;&lt;li&gt;This is an unordered list.&lt;/li&gt;&lt;li&gt;I'm sure you might have learnt by now how to create this.&lt;/li&gt;&lt;li&gt;Go ahead and create some then!&lt;/li&gt;&lt;/ul&gt;

Hope you found my answer helpful. Keep Smiling!
Similar questions