Langsung ke konten utama

Postingan

Menampilkan postingan dengan label CSS

Teks dengan gaya khusus

Contoh Gaya Khusus Teks dengan gaya khusus Kode Skrip <!DOCTYPE html> <html> <head>   <title>Contoh Gaya Khusus</title>   <style>     .custom-text {       color: blue;       font-weight: bold;       text-decoration: underline;     }   </style> </head> <body>   <span class="custom-text">Teks dengan gaya khusus</span>  </body> </html>

Tabel 2: 4 Kolom dengan Warna Biru, Putih, dan Kuning

Tabel Binatang No. Nama Binatang No. Nama Binatang 1 Domba 2 Kambing 3 Kelinci 4 Sapi Kode Skrip: <!DOCTYPE html> <html> <head>   <title>Tabel Binatang</title>   <style>     table {       border-collapse: collapse;       width: 100%;     }          th, td {       border: 1px solid red;       padding: 8px;       text-align: center;     }          th {       background-color: blue;       color: white;     }          .left-align {       text-align: left;     }         .highlight {       background-color: yellow;     }   ...

Tabel 4: 4 Kolom dengan Warna Biru, Ungu, & Kuning

Tabel Binatang No. Nama Binatang No. Nama Binatang 1 Domba 2 Kambing 3 Kelinci 4 Sapi Kode Skrip: <html> <head>   <title>Tabel Binatang</title>   <style>     table {       border-collapse: collapse;       width: 100%;     }     th, td {       border: 1px solid red;       padding: 8px;       text-align: center;     }      th {       background-color: blue;       color: white;     }       .left-align {       text-align: left;     }      .purple {       background-color: purple;       color: white;     }     .yello...

Tabel 3: 4 Kolom dengan Warna, Biru, Kuning, dan Kuning

Tabel Binatang No. Nama Binatang No. Nama Binatang 1 Domba 2 Kambing 3 Kelinci 4 Sapi Kode Skrip: <html> <head>   <title>Tabel Binatang</title>   <style>     table {       border-collapse: collapse;       width: 100%;     }     th, td {       border: 1px solid red;       padding: 8px;       text-align: center;     }     th {       background-color: blue;       color: white;     }     .left-align {       text-align: left;     }         .highlight {       background-color: yellow;     }   </style> </head> <body>   <table>     <tr...

Tabel 1: 4 Kolom 3 dengan Warna Biru, Putih, dan Putih

Tabel Binatang No. Nama Binatang No. Nama Binatang 1 Domba 2 Kambing 3 Kelinci 4 Sapi Kode Skrip: <!DOCTYPE html> <html> <head>   <title>Tabel Binatang</title>   <style>     table {       border-collapse: collapse;       width: 100%;     }         th, td {       border: 1px solid red;       padding: 8px;       text-align: center;     }          th {       background-color: blue;       color: white;     }         .left-align {       text-align: left;     }   </style> </head> <body>   <table>     <tr>       <th s...