skylight_animation

ID Implementation Example CSS | Attribute Class Vs. Id pada HTML

Jan 26th, 2025 (edited)
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.39 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>ID</title>
  7.     <style>
  8.         #black-box {
  9.             background: black;
  10.             color: white;
  11.             height: 50px;
  12.         }
  13.     </style>
  14. </head>
  15. <body>
  16.     <div id="black-box">Element with ID.</div>
  17.     <div >Element lain!</div>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment