Advertisement
gurumutant

HTML Box

Oct 9th, 2023
1,122
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.04 KB | None | 1 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>Document</title>
  7.     <style>
  8.         body {
  9.             margin: auto;
  10.         }
  11.         #box1 {
  12.             width: 400px;
  13.             background-color: cadetblue;
  14.             padding: 10px;
  15.             border: 10px solid black;
  16.            
  17.         }
  18.         #box2 {
  19.             width: 400px;
  20.             background-color: cadetblue;
  21.             padding: 40px 30px 20px 10px;
  22.             margin: 10px 20px 30px 40px;
  23.         }
  24.         #box3 {
  25.             background-color: cadetblue;
  26.  
  27.         }
  28.     </style>
  29. </head>
  30. <body>
  31.     <div id="box2">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Exercitationem, numquam voluptas debitis quod neque, facere consequuntur laboriosam quaerat, possimus incidunt accusantium autem veritatis dignissimos aut tempora velit magnam alias culpa?</div>
  32.     <div id="box3">Box 3 content</div>
  33.     <h1 id="box1">Box Model</h1>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement