Skip to content

Commit b9e1311

Browse files
committed
changed for lighthouse suggestion
1 parent ec93e26 commit b9e1311

1 file changed

Lines changed: 14 additions & 9 deletions

File tree

PR_template.html

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<style>
99
body {
1010
font-family: Arial, sans-serif;
11-
background-color: #f4f4f4;
11+
background-color: hsl(0, 2%, 20%);
1212
display: flex;
1313
justify-content: center;
1414
align-items: center;
@@ -24,10 +24,11 @@
2424
width: 300px;
2525
}
2626

27-
.customer-form label {
27+
.customer-form label {
2828
margin-bottom: 5px;
2929
color: #4c9764;
30-
}
30+
background-color: aqua;
31+
}
3132

3233
.customer-form button {
3334
width: 100%;
@@ -54,15 +55,19 @@ <H1>Checking Form:</H1>
5455
<label for="customer-name">Customer's name : </label>
5556
<input id="customer-name" name="customer-name" type="text" required pattern=".*\S.*\S.*"
5657
title="Please enter at least two non-space characters." />
57-
58+
5859
</div>
5960

61+
<p></p>
62+
6063
<div>
6164
<label for="customer-email">Customer's email : </label>
6265
<input id="customer-email" name="customer-email" type="email" required />
63-
66+
6467
</div>
6568

69+
<p></p>
70+
6671
<div>
6772
<label for="tshirt-colour">T-shirt Color : </label>
6873
<select id="tshirt-colour" name="tshirt-colour" required>
@@ -71,9 +76,9 @@ <H1>Checking Form:</H1>
7176
<option value="blue">Blue</option>
7277
<option value="black">Black</option>
7378
</select>
74-
75-
</div>
7679

80+
</div>
81+
<p></p>
7782
<div>
7883
<label for="tshirt-size">T-shirt size required : </label>
7984
<select id="tshirt-size" name="tshirt-size" required>
@@ -85,9 +90,9 @@ <H1>Checking Form:</H1>
8590
<option value="XL">XL</option>
8691
<option value="XXL">XXL</option>
8792
</select>
88-
89-
</div>
9093

94+
</div>
95+
<p></p>
9196
<button type="submit">Submit checking</button>
9297
</form>
9398
</body>

0 commit comments

Comments
 (0)