Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.

Your code so far
For the first part of the certification. Is this done just by simply coding the html and not doing any css?

<!-- file: index.html -->
<!DOCTYPE html>
<link rel="stylesheet" href="styles.css">
<h1 id="title">title</h1>
<p id="description">description</p>
<form id="survey-form">survey-form
<input id="name" placeholder="Name" required>
<input id="email" type="email" placeholder="Email" required>
<input id="number" type="number" min="4" max="13" placeholder="Number" required>
<label id="name-label">Name</label>
<label id="email-label">Email</label>
<label id="number-label">Number</label>
<select id="dropdown">
  <option></option>
  <option></option>
</select>
<input type="radio" value="0" name="but 1">
<input type="radio" value="1" name="but 2">
<input type="radio" value="0" name="but 1">
<input type="radio" value="1" name="but 2">
<input type="checkbox" value="2">
<input type="checkbox" value="3">
<textarea></textarea>
<input id="submit" type="submit">
</form>

/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Correct, you can pass this challenge without using any CSS.

I thought I need to make it look like the sample. Thanks btw

1 Like

You might get good practice if you use both.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.