HTML ol li item tags
HTML <ol> is a sorted item tag. The <ul> and <li> tags are combined to form a tag group. Before each item, there will be a preset numerical order. The initial order starts from 1. If no numerical order is required Effect, you can use: HTML ul li project tag . HTML <ol> tags support standard attributes such as id, class, title, style, dir, lang, xml, etc. All mainstream browsers support HTML <ol><li> tag writing with sorted items.
HTML <ol><li> basic syntax
<li></li>
<li></li>
<li></li>
...
</ol>
HTML <ol><li> Item tag example 1. Basic model
<li>Monday</li>
<li>Tuesday</li>
<li>Wednesday</li>
</ol>
- Monday
- Tuesday
- Wednesday
HTML <ol><li> Item tag example 2: Add hyperlink
<li><a href="https://jasonchen050319.blogspot.com/" target="_blank">Jason SEO</a></li>
<li><a href="https://jasonchen050319.blogspot.com/search/label/HTML%20Basic?&max-results=6" target="_blank">HTML Basic</a>-Jason SEO</li>
</ol>
- Jason SEO
- HTML Basic-Jason SEO
Post a Comment
0 Comments