Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.75 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Ispit</title>
  4. <style>
  5. html, body{
  6. width: 100%;
  7. height: 100%;
  8. margin: 0;
  9. padding: 0;
  10. background:lightgreen;
  11. font-size: 16px;
  12. font-family:Tahoma;
  13. }
  14. .container{
  15. height: 500px;
  16. width: 800px;
  17. background: pink;
  18. }
  19. .header{
  20. height:50px;
  21. width:100%;
  22. background:lightblue;
  23. }
  24. .menu{
  25. height:70px;
  26. width:100%;
  27. background:gray;   
  28. }
  29. .left{
  30. height:330px;
  31. width: 65%;
  32. float:left;
  33. background:orange; 
  34. }
  35. .right{
  36. height:330px;
  37. width:35%;
  38. float:right;
  39. background:purple;
  40. }
  41. .footer{
  42. position:absolute;
  43. top:450px;
  44. height:50px;
  45. width:800px;
  46. background:pink;
  47. }
  48. .menu button{
  49.     margin: 10px 3px;
  50.     background-color: gray;
  51.     border: 1px solid white;
  52.     color: white;
  53.     padding: 15px 32px;
  54.     text-align: center;
  55.     text-decoration: none;
  56.     display: inline-block;
  57.     width:190px;
  58.     cursor: pointer;
  59. }
  60. .right a{
  61. padding: 20px 120px;
  62. display:block;
  63. text-decoration:none;
  64. color:white;
  65. width:100px;
  66. height:20px;
  67. }
  68. .footer form{
  69. padding:15px 25px;
  70. }
  71. </style>
  72. </head>
  73.  
  74. <body>
  75. <div class="container">
  76.  
  77. <div class="header">
  78. <h1 style="text-align:center;">Titulli i faqes<sup><i style="font-size:12px;">karat kshtu e kishin vnu</i></sup></h1>
  79. </div>
  80.  
  81. <div class="menu">
  82. <button>Prva</button>
  83. <button>Vtora</button>
  84. <button>Treta</button>
  85. <button>Cetvrta</button>
  86. </div>
  87.  
  88. <div class="left">
  89. <h4 style="padding-left:10px;">Lorem Ipsum</h4>
  90. <p style="padding-left:10px;">"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</p>
  91. <p style="padding-left:10px;">"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>
  92. </div>
  93.  
  94. <div class="right">
  95. <a href="#">Link 1</a>
  96. <a href="#">Link 2</a>
  97. <a href="#">Link 3</a>
  98. <a href="#">Link 4</a>
  99. <a href="#">Link 5</a>
  100. </div>
  101.  
  102. <div class="footer">
  103. <form>
  104.   First:
  105.   <input type="text" value="first">
  106.   Last:
  107.   <input type="text" value="last">
  108.   <input type="radio" value="male" checked> Male
  109.   <input type="radio" value="female"> Female
  110.   <input type="radio" value="other"> Other
  111.   <input type="submit" value="Submit">
  112. </form>
  113. </div>
  114.  
  115. </div>
  116.  
  117. </body>
  118. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement