Advertisement
Guest User

JULIAN

a guest
Feb 16th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link rel="stylesheet" type="text/css" href="style.css">
  4. </head>
  5.  
  6. <style>
  7. .top-bar {
  8. padding: 10px 10px;
  9. background-color: #ccaa66;
  10. text-align: center
  11. }
  12.  
  13. .footer {
  14. padding: 10px 10px;
  15. background-color: #ccaa66;
  16. text-align: center
  17. }
  18.  
  19. .column {
  20. float: left
  21. }
  22.  
  23. .left {
  24. padding: 5%;
  25. padding-bottom: 21%;
  26. background-color: #E8D882;
  27. width: 20%;
  28. }
  29. .left a {
  30. text-decoration: none;
  31. }
  32.  
  33. .right {
  34. padding: 5%;
  35. padding-bottom: 13%;
  36. width: 60%;
  37. background-color: #f1e8b0;
  38. }
  39.  
  40. .row:after {
  41. content: "";
  42. display: table;
  43. clear: both;
  44. }
  45. </style>
  46.  
  47. <body>
  48. <div class="top-bar">
  49. <h1>Jake's Coffee Shop</h1>
  50. </div>
  51.  
  52. <div class="row">
  53. <div class="column left">
  54. <a href="#">Home</a><br><br>
  55. <a href="#">Menu</a><br><br>
  56. <a href="#">Music</a><br><br>
  57. <a href="#">Jobs</a><br><br>
  58. </div>
  59.  
  60. <div class="column right">
  61. <p>Come in and experience...</p>
  62. <img src ="coffee.jpg"></img>
  63. <ul>
  64. <li>Specialty Coffee and Tea</li>
  65. <li>Freshly made sandwiches</li>
  66. <li>Bagels, Muffins, and Organic Snacks</li>
  67. <li>Music and Poetry Readings</li>
  68. <li>Open mic nights</li>
  69. <li>...</li>
  70. </ul>
  71.  
  72. <p>
  73. 23 Pine Road<br>
  74. Nottingham, NG1 5YU<br>
  75. 0115 9324567
  76. </p>
  77. </div>
  78. </div>
  79.  
  80. <div class="footer">
  81. <p>
  82. Copyright © 2011 Jake's Coffee House<br><a href="#">jake@jcoffee.com</a>
  83. </p>
  84. </div>
  85. </body>
  86. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement