-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.4 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1.4 KB
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
<!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 id="astronaut-1" src="https://kq-storage.s3.ap-south-1.amazonaws.com/Github/astronaut/space-man-1%5B1%5D.png" alt="astronaut image">
<img id="astronaut-2" src="https://kq-storage.s3.ap-south-1.amazonaws.com/Github/astronaut/space-man-2%5B1%5D.png" alt="">
<form action=""><h2>Rocket around the <br> Moon with your Bff's</h2>
<label id="country" for="">departure country</label><br>
<select name="" id="country-name">
<option value="India">India</option>
<option value="Russia">Russia</option>
<option value="USA">USA</option>
</select><br>
<label id="number" for="">no. of space travellers</label><br>
<input id="space-travellers" type="text"><br>
<label id="email" for="">your email</label><br>
<input id="placeholder" type="text" placeholder="ilovespace@gmail.com"><br>
<label id="spacesuit" for="">Do you want to rent a spacesuit</label>
<p id="yes">yes please</p>
<input id="radio-1" type="radio">
<p id="no">no</p>
<input id="radio-2" type="radio">
<input id="sub" type="submit" placeholder="take us to space">
</form>
</body>
</html>