forked from Anthony01M/covid-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 770 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>COVID-19 Tracker</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="particles-js"></div>
<div class="container">
<h1>COVID-19 Tracker</h1>
<form id="covidForm">
<input type="text" id="country" placeholder="Enter country name" required>
<button type="submit">Get Data</button>
</form>
<div class="results" id="results"></div>
</div>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="particles-config.js"></script>
<script src="script.js"></script>
</body>
</html>