Create HTML and Add CSS...

Here, I am sharing an example of creating an display list without bullets:

Code:
<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      ul {
        list-style-type: none;
      }
    </style>
  </head>
  <body>
    <h1>W3Docs</h1>
...