Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Contoh class dan id</title>
- <style>
- .highlight {
- color: green;
- }
- #unix {
- font-weight: bold;
- }
- </style>
- </head>
- <body>
- <p class="highlight">Paragraf dengan class highlight (warna hijau).</p>
- <p id="unix" class="highlight">Paragraf dengan id unique-item (tebal dan hijau).</p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment