Use <ul> for a collection where the sequence is not important. Each item belongs in an <li> element.
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
The old type attribute on <ul> is deprecated. Use CSS list-style-type instead.
ul { list-style-type: square; }
.circle-list { list-style-type: circle; }
.no-marker { list-style-type: none; }
list-style-type: none.<ul>
<li>Frontend
<ul><li>HTML</li><li>CSS</li></ul>
</li>
</ul>
HTML Lists · Ordered Lists · Description Lists
Author & Instructor at plus2net
I write and maintain practical tutorials on Python, PHP, SQL, JavaScript, HTML, jQuery, and web development at plus2net. The tutorials focus on clear explanations, working examples, and code that readers can test and adapt while learning.