0% found this document useful (0 votes)
25 views

Build A Survey Form

Uploaded by

alazay.m.diaz
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views

Build A Survey Form

Uploaded by

alazay.m.diaz
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

** start of undefined **

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
href="styles.css">
</head>
<body>
<h1 id="title">Title</h1>
<p id="description">Description</p>
<form required id="survey-form">
<input required id="name" type="text" placeholder="Name"></input>
<input required id="email" type="email" placeholder="Email"></input>
<input id="number" type="number" min="0" max="10" placeholder="Number"></input>
<label id="name-label">Name</label>
<label id="email-label">Email</label>
<label id="number-label">Number</label>
<select id="dropdown">
<option>Option 1</option>
<option>Option 2</option>
</select>

<input value="test1" name="test" type="radio"></input>


<input value="test2" name="test" type="radio"></input>
<input type="checkbox" value="idk"></input>
<input type="checkbox" value="idk"></input>
<textarea></textarea>
<input type="submit" id="submit"></input>

</form>
</body>

** end of undefined **

** start of undefined **

** end of undefined **

You might also like