-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Astronaut Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img src="https://kq-storage.s3.ap-south-1.amazonaws.com/Github/astronaut/space-man-1%5B1%5D.png"
alt="astronaut" id="astronaut-1">
<img src="https://kq-storage.s3.ap-south-1.amazonaws.com/Github/astronaut/space-man-2%5B1%5D.png"
alt="astronaut" id='astronaut-2'>
<form action="">
<h1>
Rocket around the moon with your BFFs
</h1>
<label for="Country" class="display-block">Departure Country</label>
<select name="" id="Country">
<option value="">India</option>
<option value="">USA</option>
<option value="">Spain</option></select>
<label for=""class="display-block">No. of Travellers</label>
<input type="text" name="" id="">
<label for=""class="display-block">Your Email</label>
<input type="email " name=""id="email"
placeholder="[email protected]">
<label for=""class="display-block">Do you want to rent a space suit?</label>
<input type="radio">
<label for="">Yes, Please</label>
<input type="radio">
<label for="" >No, I have my own</label>
<input type="submit" class="display-block" value="TAKE US TO SPACE!">
</form>
</body>
</html>