-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (29 loc) · 891 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
type="text/css"
rel="stylesheet"
href="assets/js9-to-be-served/js9support.css"
/>
<link
type="text/css"
rel="stylesheet"
href="assets/js9-to-be-served/js9.css"
/>
</head>
<body>
Hello?
</body>
<script>
fetch(
"https://catch-dev-api.astro.umd.edu/catch?cached=true&target=562274&uncertainty_ellipse=false&sources=neat_palomar_tricam&sources=neat_maui_geodss&sources=skymapper_dr4&sources=ps1dr2&sources=catalina_bigelow&sources=catalina_lemmon&sources=spacewatch&sources=catalina_bokneosurvey"
)
.then((res) => res.json())
.then((data) => console.log(data))
.catch((err) => console.log(err));
</script>
</html>