-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (51 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<title>Mars sol</title>
</head>
<body>
<style>
#upper{
height: 10vh;
background-color: antiquewhite;
display: flex;
align-items: center;
}
#upper form{
width: 100%;
display: flex;
justify-content: space-evenly;
align-items: center;
}
#middle{
margin-top: 10px;
height: 8vh;
width: 100%;
display: flex;
justify-content: space-evenly;
align-items: center;
background-color: aqua;
}
#lower{
display: flex;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
}
</style>
<div id="upper">
<form action="">
<input type="number" id="sol" placeholder="Enter sol (max 1000)">
<button id="submit">Get Image</button>
</form>
</div>
<div id="middle">
<button id="prev">Previous Image</button>
<button id="next">Next Image</button>
</div>
<div id="lower">
</div>
<script src="jquery-3.6.1.js"></script>
<script src="script.js"></script>
</body>
</html>