<h1 id="title"> Farewell Party Survey Form </h1>
<form id="survey-form">
<div class="form-control">
<label for="name" id="label-name">
Name
</label>
<input type="text" id="name" placeholder="Enter your name" />
</div>
<div class="form-control">
<label for="email" id="label-email">
Email
</label>
<input type="email" id="email" placeholder="Enter your email" />
</div>
<div class="form-control">
<label for="age" id="label-age">
Age
</label>
<input type="number" id="age" placeholder="Enter your age" />
</div>
<div class="form-control">
<label for="role" id="label-role">
Which option best describes you?
</label>
<select name="role" id="role">
<option value="student">Student</option>
<option value="intern">Intern</option>
<option value="professional">Professional</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-control">
<label id="label-attendance">
Will you attend the party?
</label>
<label for="attend-1" id="label-attend-1">
<input type="radio" id="attend-1" name="attend">Yes</input>
</label>
<label for="attend-2" id="label-attend-2">
<input type="radio" id="attend-2" name="attend">No</input>
</label>
</div>
<div class="form-control">
<label>What did you like about the program?</label>
<br>
<label for="inp-1">
<input type="checkbox" name="inp">Training</input>
</label>
<br>
<label for="inp-2">
<input type="checkbox" name="inp">The Learning Sessions from Industry Experts</input>
</label>
<br>
<label for="inp-3">
<input type="checkbox" name="inp">Community Meetups</input>
</label>
<br>
<label for="inp-4">
<input type="checkbox" name="inp">Brown Bag Sessions</input>
</label>
<br>
<label for="inp-5">
<input type="checkbox" name="inp">Switching to Hybrid Mode</input>
</label>
<br>
<label for="inp-6">
<input type="checkbox" name="inp">Food, Office etc.</input>
</label>
</div>
<div class="form-control">
<label for="comment">
Any comments or suggestions
</label>
<textarea name="comment" id="comment" placeholder="Enter your comment here">
</textarea>
</div>
<div class="button">
<button type="reset" value="reset" id="reset">
Reset
</button>
<button type="submit" value="submit" id="submit">
Submit
</button>
</div>
</form>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Poppins:wght@300&display=swap');
*{
margin: 4px;
font-size: 1em;
}
body{
background-image: linear-gradient(
115deg,
rgba(5, 5, 5, 0.8),
rgba(136, 136, 206, 0.2)
), url('https://th.bing.com/th/id/OIP.IbRrBbtg7nI19mKhiz_HuQHaHa?pid=ImgDet&rs=1.jpg');
}
#title
{
font-weight: bolder;
font-family: 'Montserrat', sans-serif;
text-align: center;
font-size: 2em;
color: white;
padding: 25px 0;
}
form {
margin: 0 auto;
width: 70%;
font-family: 'Poppins', sans-serif;
border: 1px solid #CCC;
background-color: #F3F3F3;
padding: 40px;
}
#name, #email, #age, select,t45extarea {
display: inline-block;
text-align: left;
vertical-align: middle;
padding: .5%;
font-family: 'Montserrat';
resize: vertical;
width : 75%;
}
textarea {
padding: 2%;
}
.button{
display: flex;
justify-content: center;
}
button {
margin: .5em;
color: white;
border: none;
padding: 8px;
border-radius: 2px;
}
#reset{
background-color: #EBD671;
}
#submit{
background-color: #85C88A;
}
#reset:hover, #submit:hover{
border-right: solid 4px lightgray;
border-bottom: solid 6px lightgray;
color: black;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.