Advertisement
Guest User

Untitled

a guest
Dec 9th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. ############ HTML
  2.  
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="UTF-8">
  7. <link rel="stylesheet" href="css/style.css">
  8. <link rel="icon" href="img/icon.png">
  9. <title>huy</title>
  10. </head>
  11. <body>
  12. <div id="page-wrapper">
  13. <div id="header" class="block"></div>
  14. <div id="sidebar" class="block"></div>
  15. <div id="content" class="block"></div>
  16. <div id="footer" class="block"></div>
  17. </div>
  18. </body>
  19. </html>
  20.  
  21. ############ CSS
  22.  
  23. html {
  24. margin: 0 0 0 0;
  25. }
  26.  
  27. body {
  28. margin: 0 0 0 0;
  29. background-image: url(../img/bg.jpg);
  30. background-size: 100%;
  31. }
  32.  
  33. .block {
  34. background-color: #0a0a0a;
  35. opacity: 0.7;
  36. box-shadow: 0px 0px 5px 5px #1f1f1f;
  37. margin: 10px 10px 10px 10px;
  38. vertical-align: top;
  39. }
  40.  
  41.  
  42. #page-wrapper {
  43. width: 100%;
  44. height: 100vh;
  45. }
  46.  
  47. #header {
  48. width: 800px;
  49. height: 100px;
  50. display: inline-block;
  51. }
  52.  
  53. #sidebar {
  54. width: 250px;
  55. height: 300px;
  56. display: inline-block;
  57. }
  58.  
  59. #content {
  60. width: 800px;
  61. min-height: 600px;
  62. /*display: inline-block;*/
  63. }
  64.  
  65. #footer {
  66. width: 800px;
  67. height: 70px;
  68. /*display: inline-block;*/
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement