Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Savage Dance Camp Survey Form</title>
- <link rel="stylesheet" href="Survey Form.css">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- </head>
- <body>
- <header>
- <h1 id="title"><em>Savage Dance Camp</em> Survey Form</h1>
- <p id="description">Your feedback is important to us.</p>
- </header>
- <main>
- <form id="survey-form">
- <div class="form-group">
- <label id="name-label" for="name">Name</label>
- <input
- type="text"
- name="name"
- id="name"
- class="form-control"
- placeholder="Enter your name"
- required
- />
- </div>
- <div class="form-group">
- <label id="email-label" for="email">Email</label>
- <input
- type="email"
- name="email"
- id="email"
- class="form-control"
- placeholder="Enter your email"
- required
- />
- </div>
- <div class="form-group">
- <label id="number-label" for="number">Number</label>
- <input
- type="number"
- name="number"
- id="number"
- min="4"
- max="60"
- class="form-control"
- placeholder="Age"
- />
- </div>
- <div>
- <p>Role</p>
- <select id="dropdown" name="role" required>
- <option disabled selected value>Select Current Role</option>
- <option value="student">Student</option>
- <option value="employed">Employed for wages</option>
- <option value="selfEmployed">Self-employed</option>
- <option value="lookingWork">Out of work and looking for work</option>
- <option value="notLooking">Out of work but not looking for work</option>
- <option value="retired">Retired</option>
- <option value="unableWork">Unable to work</option>
- <option value="preferNo">Prefer not to say</option>
- </select>
- </div>
- <div>
- <P>How competent are you in dancing?</P>
- <label>
- <input
- name="user-competent"
- value="basic"
- type="radio"
- checked
- />Basic
- </label>
- <label>
- <input
- name="user-competent"
- value="intermediate"
- type="radio"
- checked
- />Intermediate
- </label>
- <label>
- <input
- name="user-competent"
- value="advanced"
- type="radio"
- checked
- />Advanced
- </label>
- <label>
- <input
- name="user-competent"
- value="expert"
- type="radio"
- checked
- />Expert
- </label>
- </div>
- <div>
- <p>How long have you been dancing?</p>
- <select id="yoe" name="yoe" required>
- <option disabled selected value>Select an Option</option>
- <option value="lessaYear"><1year</option>
- <option value="3years">1-3 years</option>
- <option value="5years">4-5 years</option>
- <option value="10years">6-10 years</option>
- <option value="more10Years">10+ years</option>
- </select>
- </div>
- <div>
- <p>Which type of class do you prefer?</p>
- <label>
- <input
- name="prefer"
- value="ballet"
- type="checkbox"
- />Ballet
- </label>
- <label>
- <input
- name="prefer"
- value="contemporary"
- type="checkbox"
- />Contemporary
- </label>
- <label>
- <input
- name="prefer"
- value="hipHop"
- type="checkbox"
- />Hip hop
- </label>
- <label>
- <input
- name="prefer"
- value="urban"
- type="checkbox"
- />Urban
- </label>
- <label>
- <input
- name="prefer"
- value="Modern"
- type="checkbox"
- />Modern
- </label>
- </div>
- <div>
- <p>Tell us what you love about <em>Savage Dance Camp</em> and what we could do to be better.</p>
- <textarea
- id="suggestions"
- name="suggestions"
- placeholder="Enter your suggestion here">
- </textarea>
- </div>
- <div>
- <button id="submit" type="submit">Submit</button>
- </div>
- </form>
- </main>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment