-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (66 loc) · 3.46 KB
/
index.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Form</title>
<link rel="stylesheet" href="Styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Racing+Sans+One">
</head>
<body>
<header>
<h1 id="title">Pre-Order your new Ferrari</h1>
<p id="description">Complete the information with your desired features</p>
</header>
<section>
<form action="" id="survey-form">
<label id="name-label" for="name">Name</label>
<input class="text" type="text" id="name" name="email" placeholder="Complete Name" required>
<label id="email-label" for="email">Email</label>
<input class="text" type="email" id="email" name="email" placeholder="Email Address" required>
<label id="number-label" for="number">Telephone Number</label>
<input class="text" type="number" id="number" name="number"
min="1111111111" max="9999999999" placeholder="Telephone Number" required><br>
<div class="dropdown">
<label for="dropdown">Desired Exterior Color</label>
<select class="options" name="dropdown" id="dropdown" >
<option value="rosso-corsa">ROSSO CORSA</option>
<option value="blu-pozzi">BLU POZZI</option>
<option value="giallo-modena">GIALLO MODENA</option>
<option value="bianco-avus">BIANCO AVUS</option>
<option value="nero">NERO</option>
<option value="rosso-scuderia">ROSSO SCUDERIA</option>
</select>
</div>
<fieldset class="radio">
<legend>Interior Color</legend>
<input id="tortora" type="radio" name="interior" value="tortora">
<label for="tortora">TORTORA</label><br>
<input id="charcoal" type="radio" name="interior" value="charcoal">
<label for="charcoal">CHARCOAL</label><br>
<input id="iroko" type="radio" name="interior" value="iroko">
<label for="iroko">IROKO</label><br>
<input id="bordeaux" type="radio" name="interior" value="bordeaux">
<label for="bordeaux">BORDEAUX</label><br>
</fieldset>
<fieldset class="chckbx">
<legend>Additional Accessories</legend>
<input type="checkbox" id="cbx1" value="cbx1">
<label for="cbx1">Exterior Carbon Components</label><br>
<input type="checkbox" id="cbx2" value="cbx2">
<label for="cbx2">Aluminium Brake Calipers</label><br>
<input type="checkbox" id="cbx3" value="cbx3">
<label for="cbx3">Sport Exhaust Pipes</label><br>
<input type="checkbox" id="cbx4" value="cbx4">
<label for="cbx4">Daytona Seats</label><br>
<input type="checkbox" id="cbx5" value="cbx5">
<label for="cbx5">Interior Full Carbon Components</label><br>
</fieldset>
<p>Additional requirements:</p>
<textarea id="requirements" cols="30" rows="5" type="textarea" placeholder="Enter your additional car requirements"></textarea> <br>
<input id="submit" type="submit" value="Send">
</form>
</section>
</body>
</html>