-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
165 lines (155 loc) · 7.93 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>COVID-19 Tracker</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous" />
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.2/css/bulma.min.css">
<script src="https://kit.fontawesome.com/f38c77de34.js" crossorigin="anonymous"></script>
<body>
<nav class="navbar navbar-expand-sm navbar-light bg-transparent">
<a id="nav" class="navbar-brand" href="index.html">COVID-19 TRACKER</a>
</nav>
<main>
<section class="hero is-light">
<div class="hero-body">
<div class="container virusInfo">
<h1 class="title">COVID-19</h1>
<p class="title-desc">the infectious disease caused by the most recently discovered coronavirus.</p>
<button class="button is-danger activate" id="symptoms">Symptoms</button>
<div class="modal">
<div class="modal-background"></div>
<div class="modal-content">
<div class="box">
<article class="media">
<div class="media-left">
<figure class="image is-64x64">
<img src="https://fertilitynetworkuk.org/wp-content/uploads/2020/03/cdc-k0KRNtqcjfw-unsplash-1-128x128.jpg"
alt="Image">
</figure>
</div>
<div class="media-content">
<div class="content">
<p><strong>Symptoms Include:</strong><br>
<ul>
<li>Fever/chills</li>
<li>Cough</li>
<li>Difficulty breathing</li>
<li>Fatigue</li>
<li>Muscle aches</li>
<li>loss of taste or smell</li>
<li>Sore throat</li>
<li>Congestion or runny nose</li>
<li>Nausea or vomiting</li>
<li>Diarrhea</li>
</ul>
</p>
</div>
</article>
</div>
</div>
<button class="modal-close is-large" aria-label="close"></button>
</div>
</div>
</div>
</section>
<!-- Search form area -->
<article class="row form-group container-fluid justify-content-center">
<!-- <form class="searchForm"> -->
<input class="searchBar" id="country" type="text" placeholder="Enter country" aria-label="Search"
aria-describedby="search-country">
<button id="searchBtn" class="btn searchBtn">
<i class="fas fa-search" aria-hidden="true"></i>
</button>
<!-- </form> -->
</article>
<!-- Graph of Covid results for searched country -->
<figure class="jumbotron container">
<div class="row">
<div class="col text-center">
<canvas id="global-chart" width="640" height="480"></canvas>
<!-- <canvas id="country-chart" width="640" height="480"></canvas> -->
</div>
</div>
</figure>
<section class="container-fluid news">
<div class="card-deck">
<div class="card">
<div class="card-body">
<h5 class="card-title">News 1</h5>
<p class="card-text">
This is a wider card with supporting text below as a natural
lead-in to additional content. This content is a little bit
longer.
</p>
<a href="#" class="btn btn-primary">Read more</a>
</div>
<div class="card-footer">
<small class="text-muted">Last updated 3 mins ago</small>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">News 2</h5>
<p class="card-text">
This card has supporting text below as a natural lead-in to
additional content.
</p>
<a href="#" class="btn btn-primary">Read more</a>
</div>
<div class="card-footer">
<small class="text-muted">Last updated 3 mins ago</small>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">News 3</h5>
<p class="card-text">
This is a wider card with supporting text below as a natural
lead-in to additional content. This card has even longer content
than the first to show that equal height action.
</p>
<a href="#" class="btn btn-primary">Read more</a>
</div>
<div class="card-footer">
<small class="text-muted">Last updated 3 mins ago</small>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">News 4</h5>
<p class="card-text">
This is a wider card with supporting text below as a natural
lead-in to additional content. This card has even longer content
than the first to show that equal height action.
</p>
<a href="#" target="_blank" class="btn btn-primary">Read more</a>
</div>
<div class="card-footer">
<small class="text-muted">Last updated 3 mins ago</small>
</div>
</div>
</div>
</section>
</main>
<footer class="container-fluid">
<i>© COVID-19 2020 All rights reserved</i>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous">
</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="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="js/script.js"></script>
</body>
</html>