Advertisement
1xptolevitico69

Bootstrap essay

Jul 10th, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.02 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=en>
  3. <head>
  4. <title>Bootstrap</title>
  5. <meta charset=utf-8>
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8. .container {   margin:auto;width:1200px;display:block;  }
  9. img {   width:200px;height:200px;border-radius:50%;border:5px solid red;
  10.         padding:5px;  }
  11. .d1 {   display:inline-block;width:400px;float:left;
  12.         text-align:center;  }
  13. </style>
  14. </head>
  15. <body>
  16.  
  17. <span class='container'>
  18. <div class='d1'>
  19. <h1>Coffee Shop</h1>
  20. <img src='https://images.pexels.com/photos/2159065/pexels-photo-2159065.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'/>
  21. <h1>Some text</h1>
  22. </div>
  23.  
  24. <div class='d1'>
  25. <h1>Housing</h1>
  26. <img src='https://images.pexels.com/photos/145665/pexels-photo-145665.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'/>
  27. <h1>Some text</h1>
  28. </div>
  29.  
  30. <div class='d1'>
  31. <h1>Friends</h1>
  32. <img src='https://images.pexels.com/photos/1655329/pexels-photo-1655329.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260'/>
  33. <h1>Food</h1>
  34. </div>
  35. </span>
  36.  
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement