-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (48 loc) · 2.06 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCKTYPE html>
<html>
<div class="menu">
<button class="dropbtn">Menu</button>
<div class="menu-content">
<a href="#">home</a>
<a href="#">#1 Super car brand</a>
<a href="#">Top 3 fastest super car</a>
</div>
</div>
<label for="car-brand">Choose a car brand:</label>
<select name="car-brands" id="car-names">
<option value="Bugatti">Bugatti</option>
<option value="Lamborghini">Lamborghini</option>
<option value="Devel-sixteen">Devel sixteen </option>
<option value="Koenigsegg">Koenigsegg</option>
<option value="9ff">9ff</option>
<option value="Pagani">Pagani</option>
<option value="Aston Martin">Aston Martin</option>
<option value="McLaren">McLaren</option>
<option value="Ruf">Ruf</option>
</select>
<div class="topnav">
<a class="choose" href="#choose">Choose</a>
<a href="#your">Your</a>
<a href="#car">Car</a>
<input type="text" placeholder="Search..">
</div>
<head>
</head>
<body>
<h1>Super cars</h1>
<p>Most searched.</p>
</body>
<button type="button">Most bought!</button>
<button type="button">Oldest super cars!</button>
<button type="button">Recently released!</button>
<button type="button">Most fastest!</button>
</html>
<img src="img_Koenisegg sesko absolut.jpg" alt="Koenigsegg sesko absolut">
<p>Do you like this car:</p>
<form>
<input type="radio" id="html" name="fav_language" value="Yes">
<label for="yes">yes</label><br>
<input type="radio" id="css" name="fav_language" value="No">
<label for="no">no</label><br>
<input type="submit" value="Submit">
</form>