Minggu, 17 April 2016

MEMBUAT TAG MENU

 membuat menu simbol tombol a tau tag menu
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>