Today We Will learn about unordered list in HTML.
Unordered List create a list in unorder form that is we dont see any proper numbering.
We use following syntax for creating unordered list:
<ul> <li> name of list item 1 </li>
<li> name of list item 2 </li> </ul>
SO let us create a unordered list of names of the exchanges on which blurt has been listed already.
Final Output :
Step 1 : Create a proper html structure for your file.
Step 2 : Write following code inside the body tag.
Step 3 : Run your file with any browser to see the result.
FULL Code :
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>my first web page is here</title>
</head>
<body>
<h2>Here are the Name of Exchanges on Which Blurt has already been listed on</h2>
<ul>
<h3><li>Ionomy</li>
<li>Beldex</li>
<li>Stex</li>
<li>Hive Engine</li>
<li>Steem Engine</li>
<li>Leodex</li></h3>
</ul>
</body>
</html>
THAT'S HOW YOU CREATE UNORDERED LIST.
THANK YOU.
Congratulations! This post has been upvoted by the @blurtcurator communal account,
You can request a vote every 12 hours from the #getupvote channel in the official Blurt Discord.Don't wait to join ,lots of good stuff happening there.