Help!Help!Help!
Write HTML code to create unordered list of 10 items.
●No Spamming●
●Content quality required●
Correct answer will be marked as brainliest
gopalbhagat3p7s8ho:
Plz answer
Answers
Answered by
4
HTML stands for Hyper Text Markup Language. It is used for creation of webpages.
Unordered Lists in HTML can be created with the <ul> tag.
The most simple way for creating the required list is:
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
<li>Item 6</li>
<li>Item 7</li>
<li>Item 8</li>
<li>Item 9</li>
<li>Item 10</li>
</ul>
The above code can be written in the <body> section of the HTML document.
Now, the <ul> tag can take the attribute known as type, which specifies what kind of bullets do we want in the unordered list.
We can specify:
<ul type = "square">
OR
<ul type = "disc">
OR
<ul type = "circle">
The default is the disc one.
An image is attached showing how each type looks on a Browser.
Unordered Lists in HTML can be created with the <ul> tag.
The most simple way for creating the required list is:
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
<li>Item 6</li>
<li>Item 7</li>
<li>Item 8</li>
<li>Item 9</li>
<li>Item 10</li>
</ul>
The above code can be written in the <body> section of the HTML document.
Now, the <ul> tag can take the attribute known as type, which specifies what kind of bullets do we want in the unordered list.
We can specify:
<ul type = "square">
OR
<ul type = "disc">
OR
<ul type = "circle">
The default is the disc one.
An image is attached showing how each type looks on a Browser.
Attachments:
Answered by
7
Short note on HTML:
= > It stands for Hypertext Markup Language.
= > It is the mother of all web programming languages.
HTML Unordered Lists:
= > As the name itself implies that the items are not arranged in an order.
Ex:
<html>
<body>
<ul style = "list-style-type: square">
<li> Mango </li>
<li> Pomegranate </li>
<li> Guava </li>
<li> Grapes </li>
<li> Pineapple </li>
<li> Apple </li>
<li> Strawberry </li>
<li> Orange </li>
<li> Banana </li>
<li> Water melon </li>
</body>
</html>
<!Hope this helps!>
= > It stands for Hypertext Markup Language.
= > It is the mother of all web programming languages.
HTML Unordered Lists:
= > As the name itself implies that the items are not arranged in an order.
Ex:
<html>
<body>
<ul style = "list-style-type: square">
<li> Mango </li>
<li> Pomegranate </li>
<li> Guava </li>
<li> Grapes </li>
<li> Pineapple </li>
<li> Apple </li>
<li> Strawberry </li>
<li> Orange </li>
<li> Banana </li>
<li> Water melon </li>
</body>
</html>
<!Hope this helps!>
Similar questions