Advertisement
makispaiktis

Codecademy - Practising CSS (Example 4 - HTML Code)

Oct 19th, 2019 (edited)
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.29 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.   <title>Specificity</title>
  6.   <link href="style.css" type="text/css" rel="stylesheet">
  7. </head>
  8.  
  9. <body>
  10.   <div id="container">
  11.     <div id="teal" class="block">
  12.     </div>
  13.     <div id="purple" class="block">
  14.     </div>
  15.   </div>
  16. </body>
  17.  
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement