There are basically three different types of lists provided by HTML:
<!DOCTYPE html>
<html>
<head>
<title>Unordered list without using bullets</title>
<style>
ul {
list-style-type:none;
}
h1 {
text-align:center;
color: #1b24db;
}
h3 {
text-align:center;
}
body {
width:60%;
}
</style>
</head>
<body>
<h1>Bajarangi Soft</h1>
<h3>Unordered list without using bullets</h3>
<p>Web Designing Courses lists:</p>
<ul>
<li>Html</li>
<li>Css</li>
<li>Bootstrap</li>
<li>JavaScript</li>
<li>Laravel</li>
<li>Computer Organization and Architecture</li>
<li>Discreate Mathematics</li>
<li>C Programming</li>
</ul>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Unordered list without using bullets</title>
<style>
ul {
list-style-type:none;
}
ul li {
display:inline;
}
h1 {
text-align:center;
color: #1b24db;
}
h3 {
text-align:center;
}
body {
width:60%;
}
</style>
</head>
<body>
<h1>Bajarangi Soft</h1>
<h3>Unordered list without using bullets</h3>
<p>Web Designing Courses lists:</p>
<ul>
<li>Html</li>
<li>Css</li>
<li>Bootstrap</li>
<li>JavaScript</li>
<li>Laravel</li>
<li>Computer Organization and Architecture</li>
<li>Discreate Mathematics</li>
<li>C Programming</li>
</ul>
</body>
</html>