generated from BuildforSDG-Cohort1-Assessment/covid-19-estimator-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
67 lines (67 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Get correct rel for the link below -->
<link href="https://fonts.googleapis.com/css?family=Nunito&display=swap" rel="stylesheet">
<link href="./src/public/css/reset.css" rel="stylesheet">
<link href="./src/public/css/style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="left-column light-background">
<div class="header-container">
<h1>COVID-19 ESTIMATOR</h1>
</div>
<div class="image-container">
<img src="/src/public/images/undraw_setup_analytics_8qkl.svg" alt="analytics image">
</div>
<div class="text-container">
<p>There is this girl i know, she is so pretty
she is cute yeeeh so cute... blah blah blah.</p>
</div>
</div>
<div class="right-column dark-background">
<div class="form-container">
<div class="right-column-header">
<h1>Fill in your data</h1>
</div>
<form class="estimator-form">
<div class="form__item-group">
<label for="population">Population: </label>
<br>
<input class="form__input" type="number" name="population" data-population="" required>
</div>
<div class="form__item-group">
<label for="reported_cases">Reported Cases: </label>
<br>
<input class="form__input" type="number" name="reported_cases" data-reported-cases="" required>
</div>
<div class="form__item-group">
<label for="time">Time To Elapse: </label>
<br>
<input class="form__input" type="number" name="data-time-to-elapse" data-time-to-elapse="" required>
</div>
<div class="form__item-group">
<label for="hospitals">Total Hospitals </label>
<br>
<input class="form__input" type="number" name="data-total-hospital-beds" data-total-hospital-beds="" required>
</div>
<div class="form__item-group">
<label for="period-type">PeriodType: </label>
<br>
<select class="form__select" name="data-period-type" data-period-type="">
<option>Days</option>
<option>Weeks</option>
<option>Months</option>
</select>
</div>
<input class="button button_primary form__button" data-go-estimate="" type="submit" value="Get an estimate">
</form>
</div>
</div>
</div>
</body>
</html>