-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
72 lines (64 loc) · 2.41 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Corona Data</title>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: right;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 20px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: black;
color: white;
text-align: center;
}
</style>
</head>
</head>
<body>
<div class="container-fluid">
<div class="topnav">
<a href="index.html">سەرەتا</a>
<a href="countries.html">وڵاتەکان</a>
<a class="active" href="about.html">دەربارە</a>
</div>
<br>
<blockquote class="blockquote text-center">
<p class="mb-0">ئەم وێبسایتە تەنها بۆ زانیاریە دەربارەی ڤایرۆسی کۆرۆنا</p>
<p class="mb-0"> <a href="https://github.com/javieraviles/covidAPI">https://github.com/javieraviles/covidAPI</a>داتاکانی لەم لینکە وەرگیراوە</p>
<p class="mb-0">ئەم وێبسایتە ئۆپن سۆرسە</p>
</blockquote>
</div>
<div class="footer">
<p>ئەم وێب سایتە تەنها بۆ ئاماری ڤایرۆسی کۆرۆنا</p>
<p>Copyright © 2020 Rawaz Zangana</p>
</div>
<script src="scripts.js"></script>
</body>
</html>