-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (60 loc) · 2.59 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name='viewport'
content='width=device-width, initial-scale=1.0, maximum-scale=1.0' />
<title>Creative 2</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="./styles.css">
</head>
<body class="d-flex flex-column min-vh-100">
<div class="page">
<h1 style="text-align:center">Covid-19 Stats</h1>
<br>
<div class="special col-md col-lg d-flex justify-content-center align-self-center">
<div id="Joke">
</div>
</div>
<div class="special col-md col-lg d-flex justify-content-center align-self-center">
<form>
<label>Enter a date:</label>
<br>
<label>Example: To acces data on January 1, 2021, type in 2021-01-01</label>
<br>
<input id="dateInput" type="text"></input><br/>
<input id="dateSubmit" type="submit" value="Submit"></input>
</form>
</div>
<br>
<div class="row">
<div class="special col-md col-lg d-flex justify-content-center align-self-center">
<div id="dataResults">
</div>
</div>
<div class="special col-md col-lg d-flex justify-content-center align-self-center">
<div id="moredataResults">
</div>
</div>
</div>
<br>
<hr>
<hr>
<section class="portfolio" id="otherResults">
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js" integrity="sha256-4iQZ6BVL4qNKlQ27TExEhBN1HFPvAvAMbFavKKosSWQ=" crossorigin="anonymous"></script>
<script text="type/javascript" src="./script.js">
</script>
</div>
<footer class="mt-auto">
<div class="text-center p-3" style="background-color: #bad4f7">
2021 Copyright (maybe):
<a class="text-dark" href="https://github.com/Nlarseny/260_creative2" target="_blank">Github Classroom Link</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
</body>
</html>