You are on page 1of 1

** start of undefined **

<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="title">Form</h1>
<p id="description">Lorum</p>
<form id="survey-form">
<input required id="name" type="text" placeholder="name"><label id="name-
label">name</label><br>
<input required id="email" type="email" placeholder="email"><label id="email-
label">email</label><br>
<input required id="number" type="number" placeholder="age" min="1"
max="99"><label id="number-label">number</label><br>
<select id="dropdown">
<option value="dog">Dog</option>
<option value="dog">Dog</option>
</select><br>
<input type="radio" value="1" name="radio" id="radio-button">1</input><br>
<input type="radio" value="2" name="radio"id="radio-button">2</input><br>
<input type="checkbox" id="check-button" value="1">1</input><br>
<input type="checkbox" id="check-button"value="2">2</input><br>
<textarea id="story" name="text-area" rows="5" cols="33">
</textarea><br>
<button type="submit" id="submit">Submit</button>
</form>
</body>
</html>

** end of undefined **

** start of undefined **

body {
padding: 1em;
}
input {
margin: 0.2em;
}

** end of undefined **

You might also like