Guest User

Untitled

a guest
Mar 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. <!-- Kanban 10.1 -->
  2.  
  3.  
  4.  
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <style>
  10. * {
  11. box-sizing: border-box;
  12. }
  13.  
  14. /* Create three equal columns that floats next to each other */
  15. .column {
  16. float: left;
  17. width: 33.33%;
  18. padding: 10px;
  19. height: 300px; /* Should be removed. Only for demonstration */
  20. }
  21.  
  22. /* Clear floats after the columns */
  23. .row:after {
  24. content: "";
  25. display: table;
  26. clear: both;
  27. }
  28. </style>
  29. </head><!DOCTYPE html>
  30. <html>
  31. <!-- <font color="#0E8536"> -->
  32.  
  33. <head>
  34. <meta name="viewport" content="width=device-width, initial-scale=1">
  35. <style>
  36. * {
  37. box-sizing: border-box;
  38. }
  39.  
  40. /* Create three equal columns that floats next to each other */
  41. .column {
  42. float: left;
  43. width: 33.33%;
  44. padding: 22px;
  45. height: 1300px; /* Should be removed. Only for demonstration */
  46. }
  47.  
  48. /* Clear floats after the columns */
  49. .row:after {
  50. content: "";
  51. display: table;
  52. clear: both;
  53. }
  54.  
  55. </style>
  56. </head>
  57. <body>
  58.  
  59. <h2>Omer's Kanban</h2>
  60. <h3>Long live Romania! 🇷🇴</h3>
  61.  
  62.  
  63. <form action="action_page.php">
  64.  
  65. <div class="container">
  66. <label for="uname"><b>Username</b></label>
  67. <input type="text" placeholder="Enter Username" name="uname" required>
  68.  
  69. <label for="psw"><b>Password</b></label>
  70. <input type="password" placeholder="Enter Password" name="psw" required>
  71.  
  72. <button type="submit">Login</button>
  73. <label>
  74. <input type="checkbox" checked="checked" name="remember"> Remember me
  75. </label>
  76. </div>
  77.  
  78. <div class="container" style="background-color:#f1f1f1">
  79. <button type="button" class="cancelbtn">Cancel</button>
  80. <span class="psw">Forgot <a href="#">password?</a></span>
  81. </div>
  82. </form>
  83.  
  84.  
  85.  
  86.  
  87. <div class="row">
  88. <div class="column" style="background-color:#0E11EE;">
  89. <h2>TDL</h2>
  90. <form>
  91. Tasks:<br>
  92. <input type="text" name="firstname"><br>
  93. </form>
  94. </div>
  95. <div class="column" style="background-color:#E3EE0E;">
  96. <h2>Doing</h2>
  97. <form>
  98. Taks:<br>
  99. <input type="text" name="firstname"><br>
  100. </form>
  101. </div>
  102. <div class="column" style="background-color:#EE0E3D;">
  103. <h2>Done</h2>
  104. <form>
  105. Taks:<br>
  106. <input type="text" name="firstname"><br>
  107. </form>
  108. </div>
  109. </div>
  110. </body>
  111. </font>
  112. </html>
  113.  
  114. <body>
  115.  
  116. <!-- <h2>Three Equal Columns option no colors</h2>
  117.  
  118. <div class="row">
  119. <div class="column" style="background-color:#aaa;">
  120. <h2>Column 1</h2>
  121. <form>
  122. Taks:<br>
  123. <input type="text" name="firstname"><br>
  124. </form>
  125. </div>
  126. <div class="column" style="background-color:#bbb;">
  127. <h2>Column 2</h2>
  128. <p>Some text..</p>
  129. </div>
  130. <div class="column" style="background-color:#ccc;">
  131. <h2>Column 3</h2>
  132. <p>Some text..</p>
  133. </div>
  134. </div> -->
  135.  
  136. </body>
  137. </html>
Add Comment
Please, Sign In to add comment