dengan perintah tag <ul> dan tag penutup </ul>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>judul website</title>
</head>
<body>
<h1> judul website</h1>
<h2> sub judul</h2>
<p> untuk membuat paragraf </p>
<ul>
<li>menu1</li>
<li>menu2</li>
<li>menu3</li>
</ul>
</body>
</html>

