Advertisement
Guest User

Website

a guest
Mar 20th, 2019
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Organic Clothes</title>
  6. <style>
  7. body {margin:0px;
  8. font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";}
  9. .header {display:flex;
  10. justify-content: space-between;
  11. align-items: center;
  12. background-color:white;
  13. color:white;}
  14. .header img {width:100%;}
  15. .header a {margin-right:10px;}
  16. .nav {background-color:lightsteelblue;
  17. padding:10px;
  18. display:flex;
  19. justify-content: space-around;}
  20. .nav a {color:white;
  21. text-decoration:none;}
  22. .nav a:hover {color:black;}
  23. .main {display:flex;
  24. margin-top:50px;}
  25. .left, .right {padding:10px;
  26. }
  27. .main img {float:left;
  28. margin-right:10px;}
  29. .instagram p {text-align: center;color: lightsteelblue;text-decoration:inherit;}
  30. .gallery img {width:25%;
  31.  
  32. }
  33. .gallery {width:100%;
  34. }
  35. </style>
  36. </head>
  37.  
  38. <body>
  39. <div class="wrapper">
  40. <div class="header">
  41. <img alt="main logo" src="http://placehold.it/850x300" />
  42. </div>
  43. <div class="nav">
  44. <a href="#">Link 1</a>
  45. <a href="#">Link 2</a>
  46. <a href="#">Link 3</a>
  47. <a href="#">Link 4</a>
  48. <a href="#">Link 5</a>
  49. </div>
  50.  
  51.  
  52. <div class="Instagram">
  53. <p>Instagram</p>
  54. </div>
  55.  
  56.  
  57. <div class="gallery">
  58.  
  59. <img src="img/placeholder.gif"/>
  60. <img src="img/placeholder.gif"/>
  61. <img src="img/placeholder.gif"/>
  62. <img src="img/placeholder.gif"/>
  63.  
  64.  
  65. </div>
  66.  
  67.  
  68. </div>
  69. </body>
  70. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement