-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
48 lines (44 loc) · 2.07 KB
/
home.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
</head>
<body>
<div id="header" class="bg-dark text-white text-center py-2">
COVID-19 DETAILS
</div>
<!-- Navigation section -->
<div class="text-end p-3">
<a href="home.php" class="l1 mx-2" style="font-size: 16px;">Home</a>
<a href="country.php" class="l1 mx-2" style="font-size: 16px;">Country & City</a>
<a href="covid19.php" class="l1 mx-2" style="font-size: 16px;">Europe</a>
<a href="covid19chart.php" class="l1 mx-2" style="font-size: 16px;">CovidChart</a>
<a href="covid19save.php" class="l1 mx-2" style="font-size: 16px;">CovidGlobalInfo</a>
</div>
<!-- Main content section -->
<div class="row my-5">
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="card">
<div class="card-body text-center">
<a href="country.php" class="l1 text-decoration-none d-block my-3">Country Information (Asia) AND City Search</a>
<hr>
<a href="covid19.php" class="l1 text-decoration-none d-block my-3">COVID-19 Europe</a>
<hr>
<a href="covid19chart.php" class="l1 text-decoration-none d-block my-3">COVID-19 Europe - Chart</a>
<hr>
<a href="covid19save.php" class="l1 text-decoration-none d-block my-3">COVID-19 Global Information</a>
</div>
</div>
</div>
<div class="col-md-3"></div>
</div>
<!-- Footer section -->
<div id="footer" class="text-center text-dark" style="font-size: 11px; position: fixed; bottom: 10px; width: 100%;">
All Rights Reserved © 2023
</div>
</body>
</html>