Skip to content

Commit a11a51e

Browse files
authored
Add files via upload
Created via VSC
1 parent ff7b9d0 commit a11a51e

1 file changed

Lines changed: 60 additions & 0 deletions

File tree

Form-Controls/Forms.html

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<style>
5+
body {
6+
font-family: Helvetica;
7+
font-size: 30px
8+
}
9+
form {
10+
display: flex;
11+
flex-direction: column;
12+
gap: 10px;
13+
}
14+
input, select {
15+
font-size: 20px;
16+
}
17+
button {
18+
font-size: 20px;
19+
width: 100px;
20+
}
21+
</style>
22+
<meta charset="UTF-8">
23+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
24+
<title>Form</title>
25+
<body>
26+
<H1>T-Shirts</H1>
27+
<form>
28+
<div>
29+
<label>Name</label>
30+
<input>
31+
</div>
32+
<div>
33+
<label>Email</label>
34+
<input>
35+
</div>
36+
<div>
37+
<label>Size
38+
<select>
39+
<option value="xsmall">XS</option>
40+
<option value="small">S</option>
41+
<option value="medium">M</option>
42+
<option value="large">L</option>
43+
<option value="xlarge">XL</option>
44+
<option value="xxlarge">XXL</option>
45+
</select>
46+
</label>
47+
</div>
48+
<div>
49+
<label>Colour
50+
<select>
51+
<option value="yellow">Yellow</option>
52+
<option value="black">Black</option>
53+
<option value="pink">Pink</option>
54+
</select>
55+
</label>
56+
</div>
57+
<button>Submit</button>
58+
</form>
59+
</body>
60+
</html>

0 commit comments

Comments
 (0)