Advertisement
Ombashi

time gamma 1

Oct 1st, 2020
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <!DOCTYPE>
  2. <html>
  3.  
  4. <div class = 'entire'>
  5.  
  6. <p class = 'txt'>Time &amp; Date</p>
  7.  
  8. <div class = 'flex'>
  9.  
  10. <div class = 'row'>
  11.  
  12. <div class = 'colone'>
  13.  
  14. <button onclick = 'myTime()' class = 'butone'>Date</button>
  15.  
  16. </div>
  17.  
  18. <div class = 'colone'>
  19.  
  20. <p id = 'output'></p>
  21.  
  22. </div>
  23.  
  24. </div>
  25.  
  26. </div>
  27.  
  28. </div>
  29.  
  30. <style>
  31.  
  32. /* Body */
  33.  
  34. .txt {
  35.  
  36. font-family: sans-serif;
  37. position: relative;
  38. left: 640px;
  39. font-size: 30px;
  40. }
  41.  
  42. .entire {
  43.  
  44. padding:
  45. border: 2px solid #000000;
  46. border-radius: 25px;
  47. }
  48.  
  49. /* Flexbox */
  50.  
  51. .flex {
  52.  
  53. display: flex;
  54. margin: 1px;
  55.  
  56. }
  57.  
  58. .row {
  59.  
  60. flex-direction: row;
  61. width: 100%;
  62. flex-wrap: wrap;
  63. display: flex;
  64. }
  65.  
  66. .colone {
  67.  
  68. flex: 1;
  69. display: flex;
  70. flex-direction: column;
  71. flex-basis: 100%;
  72. }
  73.  
  74. /* Buttons */
  75.  
  76. .butone {
  77.  
  78.  
  79.  
  80. }
  81.  
  82. </style>
  83.  
  84. <script>
  85.  
  86.  
  87.  
  88. </script>
  89.  
  90. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement