skylight_animation

Implementasi ID & Class in the same Elelment | Attribute Class Vs. Id pada HTML

Jan 26th, 2025
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.52 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Contoh class dan id</title>
  7.     <style>
  8.         .highlight {
  9.             color: green;
  10.         }
  11.         #unix {
  12.             font-weight: bold;
  13.         }
  14.     </style>
  15. </head>
  16. <body>
  17.     <p class="highlight">Paragraf dengan class highlight (warna hijau).</p>
  18.     <p id="unix" class="highlight">Paragraf dengan id unique-item (tebal dan hijau).</p>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment