-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
53 lines (42 loc) · 1.72 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AMR Dataset Visualizations</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="container mt-4">
<h1 class="text-center mb-4">AMR Dataset Visualizations</h1>
<section id="adulterant-types">
<img src="img/adult_by_fail.png" alt="Distribution of Adulterant Types by Failure Rate">
</section>
<section id="food-types-shandong">
<img src="img/food_in_shandong.png" alt="Distribution of Food Types in Shandong">
</section>
<section id="sampled-location-types">
<img src="img/loc_by_pct.png" alt="Distribution of Sampled Location Types by Percentage">
</section>
<section id="provinces-by-snacks">
<img src="img/prov_by_snacks.png" alt="Distribution of Provinces by Snacks">
</section>
<section id="dataset-request-link" class="mt-5">
<h2 class="text-center mb-4">Request a Dataset</h2>
<p class="text-center">
If you would like to request access to our datasets, please fill out the form by clicking the link
below:
</p>
<div class="text-center">
<a href="request.html" class="btn btn-primary">Go to Dataset Request Form</a>
</div>
</section>
</div>
<footer>
<p>
<a href="index.html">© 2024 Your Website Name. All rights reserved.</a>
</p>
</footer>
</body>
</html>