HTML

box.html

Jan 30th, 2018
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" >
  3. <head>
  4. <title>Examples of the Box Model</title>
  5. <meta charset="utf-8">
  6. <style>
  7. body { background-color: #FFFFFF;
  8.       font-size:larger;
  9. }
  10. h1 { background-color: #D1ECFF;
  11.         border: 1px solid #000000;
  12.         padding: 20px;}
  13. #box { background-color: #74C0FF;
  14.         border: 5px solid #000000;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <h1>Examples of the Box Model</h1>
  20. <div id="box">HTML elements display as boxes on web pages. This div element is configured to have a light blue background, the browser default padding (which is no padding), and a black 5 pixel border. The empty space where the page background shows through between this element and the element above is an example of the margin. </div>
  21.  
  22.  
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment