-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (32 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>astronote</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" id="astronaut1">
<img src="https://kq-storage.s3.ap-south-1.amazonaws.com/Github/astronaut/space-man-2%5B1%5D.png" id="astronaut2">
<form action="">
<h1>Rock around the moon with your bff</h1>
<label for="country"; class="block-display">Depature country</label>
<select name="country" id="country">
<option value="Japan">Japan</option>
<option value="Australia">Australia</option>
<option value="russia">russia</option>
</select>
<label for="" class="block-display">no of space travellers</label>
<input type="number" name="travellers" id="traveler">
<label for="email" class="block-display">your e mail</label>
<input type="text" name="email" id="email" placeholder="[email protected]">
<label for="rent" class="block-display">do u want space sute</label>
<input type="radio" id="yes" name="rent-button" value="yes">
<label for="yes" class="rent-lable">yes please</label>
<input type="radio" id="no" name="rent-button" value="no">
<label for="no" class="rent-lable">no i have my one</label>
<input type="submit" id="button" value="take us to space">
</form>
</body>
</html>