Ini Adalah Kode Halaman Depan Untuk Pembuatan Website Dengan HTML & CSS




-HTML-

<html>
 <head><title>Belajar Buat Web</title>
  <link rel="stylesheet" href="home.css">
  <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
  <link rel="icon" href="favicon.ico" type="image/x-icon">
 </head>

 <body style="background-color: white;">

     <ul class="ul">
         <li><a href="home.html">HOME</a></li>
         <li><a href="cv.html" >MY CV</a></li>
         <li><a href="contact.html">CONTACT</a></li>
         <li><a href="aboutme.html">ABOUT ME</a></li>
     </ul>
   

    <hr />

<center>

 <marquee><h2 style="color: red">INI ADALAH WEBSITE PERTAMAKU</h2></marquee>

 <br><strong>YAPPRI</strong>
 <br>Kelas 11 Rekayasa Perangkat Lunak 2
 <p>AZIS RIDWAN</p>

 <p><label for="tanggal-lahir">Tanggal Lahir :</label>
 <input type="date" id="tanggal-lahir" name="tanggal-lahir">
 <p>

 <label for="kota">Kota Lahir:</label>
 <select id="kota" name="kota">
   <option value="yogyakarta">Bandung</option>
   <option value="jakarta">Jakarta</option>
   <option value="purwokerto">Sumedang</option>
  <option value="purwokerto">Majalengka</option>
 </select>
 <p>



 <img src="gambar.jpg" width="200" height="100" style="border-radius: 15px;">

<div class="container">
<p><strong>JADWAL PIKET</strong>
<table border="1" cellspacing="0" width="500">
 <th style="color: red">SENIN</th>
 <th style="color: blue">SELASA</th>
 <th style="color: green">RABU</th>
 <th style="color: blue">KAMIS</th>
 <th style="color: red">JUMAT</th>

 <tr>
  <td align="center">agus</td>
  <td align="center">ikin</td>
  <td align="center">labi</td>
  <td align="center">ucit</td>
  <td align="center">taci</td>
 </tr>
 <tr>
  <td align="center">suga</td>
  <td align="center">niki</td>
  <td align="center">ibal</td>
  <td align="center">ibun</td>
  <td align="center">onu</td>
 </tr>
 <tr>
  <td align="center">gus ih</td>
  <td align="center">ah ma</td>
  <td align="center">dekah</td>
  <td align="center">nubi</td>
  <td align="center">huji</td>
 </tr>
</table>
</div>

</center>

    <hr>
    <footer style="text-align: center;">
        <p>SMKS YAPPRI Sumedang &copy; 2025 Azis Ridwan.</p>
    </footer>
 </body>
</html>

_________________________________________________________________

-CSS-

.ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: black;
  display: flex;
  justify-content: center;
}

.ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

.ul li a:hover {
  background-color: grey;
  transition: .5s ease-in-out;
  border-radius: 10px;
}

.container {
    display: flex; /* Untuk tata letak dua kolom */
    box-shadow: 0 0 1000px rgba(0,0,0,1.0);
    background-color: lightgray;
    justify-content: center;
}

Komentar

Postingan populer dari blog ini

Project Web 01 Kode Register.php

Project Web 01 Kode Login.php

Project Web 01 Kode Conect.php