forked from CodeNextPaco/apiPlayground
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapiPlayground.html
More file actions
53 lines (34 loc) · 761 Bytes
/
apiPlayground.html
File metadata and controls
53 lines (34 loc) · 761 Bytes
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>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src="apiPlayground.js"></script>
<style type="text/css">
#container{
margin: auto;
text-align: center;
}
#outputContainer{
margin-top: 20%;
}
body{
background-color: black;
font-family: sans-serif;
color:#f0f0f0;
}
h1{
color:cyan;
}
</style>
<title>API Playground</title>
</head>
<body>
<div id="container">
<h1>API Playground</h1>
<input id="getMeBtn" type="button" name="" value="Get me something"/>
<div id="outputContainer">
<h2 class="output" id="output1"> Output goes here </h2>
</div>
</div>
</body>
</html>