HTML Buttons
HTML buttons are defined with
<button> tags:Example
<button>Click me</button>
HTML Lists
HTML lists are defined with
<ul> (unordered/bullet list) or <ol> (ordered/numbered list) tags, followed by <li> tags (list items):Example
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

No comments:
Post a Comment