How to define an unordered list in html

Topics

Introduction

How to define an unordered list in html

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>www.techstudy.org</title>
</head>
<body>
<ul>  
<li>C programming Language</li>  
<li>C# programming Language </li>  
<li>JAVA programming Language</li>  
<li>C++ programming Language</li>  
</ul>  
</body>
</html>

Result

How to define an unordered list in html
How to define an unordered list in html

Leave a Comment