Skip to content

Commit 64a6300

Browse files
author
JorvanW
committed
Updated index.html file to match the form.html file and added my name to the footer.
1 parent a11a51e commit 64a6300

1 file changed

Lines changed: 50 additions & 7 deletions

File tree

Form-Controls/index.html

Lines changed: 50 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,64 @@
77
<meta name="description" content="" />
88
<meta name="viewport" content="width=device-width, initial-scale=1" />
99
</head>
10+
<style>
11+
body {
12+
font-family: Helvetica;
13+
font-size: 30px
14+
}
15+
form {
16+
display: flex;
17+
flex-direction: column;
18+
gap: 10px;
19+
}
20+
input, select {
21+
font-size: 20px;
22+
}
23+
button {
24+
font-size: 20px;
25+
width: 100px;
26+
}
27+
</style>
1028
<body>
1129
<header>
12-
<h1>Product Pick</h1>
30+
<h1>T-Shirts</h1>
1331
</header>
1432
<main>
1533
<form>
16-
<!-- write your html here-->
17-
<!--
18-
try writing out the requirements first as comments
19-
this will also help you fill in your PR message later-->
34+
<div>
35+
<label>Name</label>
36+
<input>
37+
</div>
38+
<div>
39+
<label>Email</label>
40+
<input>
41+
</div>
42+
<div>
43+
<label>Size
44+
<select>
45+
<option value="xsmall">XS</option>
46+
<option value="small">S</option>
47+
<option value="medium">M</option>
48+
<option value="large">L</option>
49+
<option value="xlarge">XL</option>
50+
<option value="xxlarge">XXL</option>
51+
</select>
52+
</label>
53+
</div>
54+
<div>
55+
<label>Colour
56+
<select>
57+
<option value="yellow">Yellow</option>
58+
<option value="black">Black</option>
59+
<option value="pink">Pink</option>
60+
</select>
61+
</label>
62+
</div>
63+
<button>Submit</button>
2064
</form>
2165
</main>
2266
<footer>
23-
<!-- change to your name-->
24-
<p>By HOMEWORK SOLUTION</p>
67+
<p>By Jorvan White</p>
2568
</footer>
2669
</body>
2770
</html>

0 commit comments

Comments
 (0)