-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (60 loc) · 3.42 KB
/
index.html
File metadata and controls
60 lines (60 loc) · 3.42 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
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet">
</head>
<body>
<div id="pageOne" display="none">
<div id="header">
<a target="_blank" href="https://www.nasa.gov/">
<img draggable="false" id="logo" src="images\nasa-logo.png">
</a>
</div>
<div id="searchBox">
<input class="inputOne">
</div>
<div id="bttnBox">
<button class="enter">Search</button>
<form action="apod.html">
<!--<button id="apodBttn">Astronomy Picture of the Day</button>-->
</form>
</div>
</div>
<div id="resultsPage" display="none">
<div id="whitespace">
</div>
<div id="resultsHeading">
<div id="searchBoxTwo">
<a target="_blank" href="https://www.nasa.gov/">
<img id="returnLogo" src="images\nasa-logo.png">
</a>
<input class="inputTwo">
<!--<button class="enter">Search</button>-->
<button class="enterBttnTwo">Search</button>
<form action="apod.html">
<!--<button id="apodBttnTwo">APoD</button>-->
</form>
</div>
<div id="keywordText"></div>
</div>
<div id="apiResults">
<!--<div class="resultBox">
<a target="_blank" href="https://helpx.adobe.com/content/dam/help/en/stock/how-to/visual-reverse-image-search/jcr_content/main-pars/image/visual-reverse-image-search-v2_intro.jpg"><img class="resultImg" src="https://helpx.adobe.com/content/dam/help/en/stock/how-to/visual-reverse-image-search/jcr_content/main-pars/image/visual-reverse-image-search-v2_intro.jpg"></a>
<br>
<p class="resultTitle">title</p>
<br>
<p class="resultDesc">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>-->
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>