-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (65 loc) · 2.72 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
<!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">
<link rel="stylesheet" href="card-style.css">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<title>Document</title>
</head>
<body>
<section class="bg">
<section class="title-text">
<h1 class="heading">Spacestagram: Image-sharing from the final frontier</h1>
<h1 class="heading">Let your Curiosity Fly</h1>
</section>
<section>
<form action="#">
<div class="input-section">
<label for="sol">Choose the Martian Days (sol) : </label>
<input type="number" id="sol" name="sol" placeholder="Enter Martian Days(sol)">
<br>
<!-- <label for="camera">Choose the earth date : </label>
<input type="date" name="earth_date"> -->
<br>
<label for="camera">Choose the camera view : </label>
<br>
<select name="camera" id="camera">
<option value="">Select an option</option>
<option value="fhaz">FHAZ</option>
<option value="rhaz">RHAZ</option>
<option value="mast">MAST</option>
<option value="chemcam">CHEMCAM</option>
<option value="mahli">MAHLI</option>
<option value="mardi">MARDI</option>
<option value="navcam">NAVCAM</option>
</select>
<!-- <input type="checkbox" id="latest_photos" name="latest_photos">
<label for="latest_photos">latest_photos</label> -->
<button type="submit">Search</button>
</div>
</form>
</section>
<section class="loading">
</section>
<section class="container">
</section>
</section>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init(
{
offset: 120,
duration: 500
}
);
</script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="app.js"></script>
</body>
</html>