Advertisement
RA_Rownok

Music

Sep 25th, 2020
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Music School Registration</title>
  7. <style>
  8.  
  9. .header {
  10. margin-left: 310px;
  11. color: white;
  12. }
  13. .container {
  14. background-color:green;
  15. }
  16.  
  17. .label {
  18. background-color: green;
  19. color: white;
  20. padding: 5px;
  21. margin-left: 300px;
  22. margin-top: 5px;
  23. }
  24. .comment {
  25. background-color: green;
  26. color: white;
  27. padding: 5px;
  28. height: 20px;
  29. margin-left: 300px;
  30. }
  31. .submit {
  32. background-color: green;
  33. color: white;
  34. padding: 5px;
  35. margin-left: 500px;
  36. width: 200px;
  37. }
  38. .fname {
  39. margin-right: 5px;
  40. padding: 5px;
  41. border-color: rgb(13, 224, 13);
  42. }
  43. .lname {
  44. margin-right: 400px;
  45. padding: 5px;
  46. border-color: rgb(13, 224, 13);
  47. }
  48.  
  49. .music {
  50. display: flex;
  51. justify-content: space-between;
  52. }
  53. .month {
  54.  
  55. padding: 5px;
  56. border-color: rgb(13, 224, 13);
  57. }
  58. .day {
  59.  
  60. padding: 5px;
  61. border-color: rgb(13, 224, 13);
  62. }
  63. .year {
  64. margin-right: 400px;
  65. padding: 5px;
  66. border-color: rgb(13, 224, 13);
  67. }
  68.  
  69. .guitar {
  70. margin-right: 400px;
  71. padding: 5px;
  72. border-color: rgb(13, 224, 13);
  73. width: 360px;
  74. }
  75.  
  76. .pick {
  77. background-color: green;
  78. color: white;
  79. padding: 5px;
  80. }
  81. .week {
  82. margin-left: 575px;
  83. margin-bottom: 5px;
  84. }
  85.  
  86. </style>
  87. </head>
  88. <body>
  89. <div class="container">
  90. <h1 class="header">Register to our music school and learn music</h1>
  91.  
  92. </div>
  93.  
  94.  
  95. <div class="music">
  96. <label for="" class="label">Name *</label>
  97. <div>
  98. <input type="text" placeholder="First Name" class="fname">
  99. <input type="text" placeholder="Last Name" class="lname">
  100.  
  101. </div>
  102. </div> <br>
  103.  
  104. <div class="music">
  105. <label for="" class="label">Birth Date *</label>
  106. <div>
  107. <input type="text" placeholder="(Month)" class="month">
  108. <input type="text" placeholder="(Day)" class="day" size="7">
  109. <input type="text" placeholder="(Year)" class="year"size="7">
  110. </div>
  111. </div> <br>
  112.  
  113. <div class="music">
  114. <label for="" class="label">Choice of Instrument *</label>
  115. <div>
  116. <input type="text" placeholder="Guitar" class="guitar">
  117. </div>
  118. </div> <br>
  119.  
  120. <div>
  121. <br>
  122. <label for="" class="label" >Pick Days for Classes *</label>
  123. <div class="week">
  124. <div>
  125. <input type="checkbox">
  126. <label for="" class="pick">Monday</label>
  127. </div> <br>
  128. <div>
  129. <input type="checkbox">
  130. <label for="" class="pick">Tuesday</label>
  131. </div> <br>
  132. <div>
  133. <input type="checkbox">
  134. <label for="" class="pick">Wednesday</label>
  135. </div> <br>
  136. <div>
  137. <input type="checkbox">
  138. <label for="" class="pick">Thrusday</label>
  139. </div> <br>
  140. <div>
  141. <input type="checkbox">
  142. <label for="" class="pick">Friday</label>
  143. </div> <br>
  144. </div>
  145. </div> <br>
  146.  
  147. <div class="music">
  148. <label for="" class="label">Start Date & Time *</label>
  149. <div>
  150. <input type="text" placeholder="Month - Day - Year" class="guitar">
  151. </div>
  152. </div> <br>
  153.  
  154. <div class="music">
  155. <label for="" class="comment">Comments *</label>
  156. <textarea name="" id="" cols="30" rows="10" class="guitar" placeholder="Comments"></textarea>
  157. </div> <br> <br>
  158.  
  159. <button type="submit" class="submit">Submit</button>
  160. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement