PPTIK FORUM
Tugas Perkenalan HTML 1 dan 2 - Printable Version

+- PPTIK FORUM (http://forum.pptik.id)
+-- Forum: Workshop, Discussion & Courses (http://forum.pptik.id/forumdisplay.php?fid=16)
+--- Forum: KELAS ONLINE 2022 (http://forum.pptik.id/forumdisplay.php?fid=2048)
+---- Forum: WEB DEVELOPER (http://forum.pptik.id/forumdisplay.php?fid=2054)
+----- Forum: BATCH 1 (http://forum.pptik.id/forumdisplay.php?fid=2066)
+----- Thread: Tugas Perkenalan HTML 1 dan 2 (/showthread.php?tid=75125)



Tugas Perkenalan HTML 1 dan 2 - Fariz - 10-25-2022

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta http-equiv="X-UA-Compatible" content="IE=edge">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>Perkenalkan</title>    <style>        body{            background-color: rgb(27, 26, 26);            color: rgb(53, 52, 52);        }        main h1{            margin-left: 30px;            font-size: 50px;            text-shadow: 3px 2px 5px white;        }         main ul{            margin-top: 50px;            text-shadow: 0.5px 1px 2px white;            font-size: 25px;            list-style: none;        }         main p{            font-family: sans-serif;            font-size: 20px;            text-shadow: 0 1px 0 white;        }    </style></head><body>    <main>    <h1>        Kenalkan    </h1>     <ul>        <li>            <h3>                Nama : Fariz Ahmad Fadillah            </h3>        </li>        <li>            <h3>                Kelas : XII RPL 4            </h3>        </li>        <li>            <h3>                Lahir : 29 Januari 2005            </h3>        </li>    </ul>    <br>     <p>Perkenalkan nama saya Fariz Ahmad Fadillah , tempat tinggal di cipasir rancaekek <br>     saya lahir pada 29 Januari 2005, dan sekarang saya sedang PKL di PPTIK ITB </p></main>    </body></html>