-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
40 lines (40 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style media="screen">
.example-results {
display: inline-block;
width: 49%;
margin: 5px;
height: 50px;
background-color: rgba(155, 155, 220, 0.2);
border-radius: 5px;
text-align: center;
}
.example-results span {
position: relative;
top: 12.5px;
vertical-align: middle;
display: inline-block;
}
.example-results .number {
float: left;
left: 20px;
font-size: 1.4em;
}
.container {
width: 1196px;
margin: 0 auto;
}
</style>
</head>
<body class="container">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js" charset="utf-8"></script>
<script src="canvas_examples.js" charset="utf-8"></script>
<script src="generic_methods.js" charset="utf-8"></script>
<script src="promise_examples.js" charset="utf-8"></script>
<script src="arrays_examples.js" charset="utf-8"></script>
</body>
</html>