ul, ol, li
Designing Chaturbate Bios - <ul>
HTML Tag - Unordered list, Ordered list and List styles
The HTML <ul> tag defines an unordered (bulleted) list
The HTML <ol> tag defines an ordered (numbered) list
Use the <ul> or <ol> tag together with the <li> tag to create unordered list or ordered list.
On Chaturbate this HTML element is very important when editing a custom design because it can hold the entire layout.
TAG | HTML MARKUP | DEFINES |
---|---|---|
<ul> |
<ul>...</ul> |
HTML <ul> tag defines an unordered (bulleted) list |
<ol> |
<ol>...</ol> |
HTML <ol> tag defines an ordered (numbered) list |
<li> |
<li>...</li> |
HTML <li> tag defines a list item |
HTML MARKUP
ul
ol
li
- can be used in conjunction with inline css and can hold other block elements
HTML Markup Code:
<ul> - <li>
<ul>
<li>This is list style using ul, unordered list (bullets) type</li>
<li>This is list style using ul, unordered list (bullets) type</li>
<li>This is list style using ul, unordered list (bullets) type</li>
</ul>
Will render:
- This is list style using ul, unordered list (bullets) type
- This is list style using ul, unordered list (bullets) type
- This is list style using ul, unordered list (bullets) type
<ul style="display:block;width:90%;height:auto;box-sizing:border-box;list-style:none;">
<li>This is list style using ul, unordered list and bullet styles are removed</li>
<li>This is list style using ul, unordered list and bullet styles are removed</li>
<li>This is list style using ul, unordered list and bullet styles are removed</li>
</ul>
Will render:
- This is list style using ul, unordered list and bullet styles are removed
- This is list style using ul, unordered list and bullet styles are removed
- This is list style using ul, unordered list and bullet styles are removed
<ol> - <li>
<ol>
<li>This is list style using ol, ordered list (numbered) type</li>
<li>This is list style using ol, ordered list (numbered) type</li>
<li>This is list style using ol, ordered list (numbered) type</li>
</ol>
Will render:
- This is list style using ol, ordered list (numbered) type
- This is list style using ol, ordered list (numbered) type
- This is list style using ol, ordered list (numbered) type
<ol style="display:block;width:90%;height:auto;box-sizing:border-box;list-style:none;">
<li>This is list style using ol, ordered list (numbered) type, numbers removed</li>
<li>This is list style using ol, ordered list (numbered) type, numbers removed</li>
<li>This is list style using ol, ordered list (numbered) type, numbers removed</li>
</ol>
Will render:
- This is list style using ol, ordered list (numbered) type, numbers removed
- This is list style using ol, ordered list (numbered) type, numbers removed
- This is list style using ol, ordered list (numbered) type, numbers removed