-
Notifications
You must be signed in to change notification settings - Fork 27.3k
/
Copy pathfruit-length.html
47 lines (44 loc) · 973 Bytes
/
fruit-length.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Favorite fruit length constraint</title>
<style>
input:invalid {
border: 2px dashed red;
}
input:valid {
border: 2px solid black;
}
div {
margin-bottom: 1rem;
}
form {
margin: 2rem 0 2rem 0;
}
</style>
</head>
<body>
<form>
<div>
<label for="choose">Would you prefer a banana or a cherry?</label>
<input id="choose" name="i_like" required minlength="6" maxlength="6" />
</div>
<div>
<label for="number">How many would you like?</label>
<input
type="number"
id="number"
name="amount"
value="1"
min="1"
max="10"
/>
</div>
<div>
<button>Submit</button>
</div>
</form>
</body>
</html>