Created
February 12, 2022 21:09
-
-
Save braincee/a4bbf5d323e8bf18a128290c323dadad to your computer and use it in GitHub Desktop.
ZEaJEpE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h1 id="title">MICROVERSE SURVEY FORM</h1> | |
| <p id="description">Student Information</p> | |
| <form id="survey-form"> | |
| <label id="name" id="name-label">Name</label> | |
| <input type="text" placeholder="Enter your name"/> | |
| <label id="email" id="email-label"> | |
| </label> | |
| <input id="email" placeholder="Enter your email" name="email"></input> | |
| <label id="number" id="name-label">Number</label> | |
| <input type="number" name="number" min="7" max="12" id="number" | |
| placeholder="number"/> | |
| <div id="dropdown"> | |
| <label> | |
| Choose your Course: | |
| </label> | |
| <select> | |
| <option>HTML</option> | |
| <option>CSS</option> | |
| <option>JavaScript</option> | |
| </select> | |
| </div> | |
| <div id="comment"> | |
| <label>Additional Comments</label> | |
| <input type="textarea" /> | |
| </div> | |
| <button id="submit">Submit</button> | |
| </form> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| text-align: center; | |
| background-color: skyblue; | |
| } | |
| form { | |
| } | |
| #dropdown { | |
| margin-right: 25%; | |
| margin-top: 20px; | |
| } | |
| #comment { | |
| margin-right: 18%; | |
| margin-top: 20px; | |
| } | |
| #submit { | |
| margin-top: 20px; | |
| margin-left: 10px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment