-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexArab.html
102 lines (95 loc) · 3.73 KB
/
indexArab.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<title>احصائيات انتشار وباء كورونا المستجد</title>
</head>
<body>
<div class="container">
<div class="search-tool">
<input type="text" name="country-name" value="Morocco" id="country-name" placeholder="enter country name">
<input type="button" value="بحث" id="search">
<a class="switch_language" href="./index.html">اEnglish</a>
</div>
<h1 class="country-name"></h1>
<div class="display-data">
<div class="boxes">
<p class="data-box">
تعداد الساكنة
<span class="population data"></span>
</p>
<p class="data-box">
اخر تحديث
<span class="data last-update"></span>
</p>
</div>
</div>
<div class="display-data">
<h2 class="title">الحالات</h2>
<div class="boxes">
<p class="data-box">
اجمالي الحالات
<span class="total data"></span>
</p>
<p class="data-box">
النشطة
<span class="active data"></span>
</p>
<p class="data-box">
الجديدة
<span class="new data"></span>
</p>
<p class="data-box">
الحرجة
<span class="critical data"></span>
</p>
</div>
</div>
<div class="display-data">
<h2 class="title">الوفايات</h2>
<div class="boxes">
<p class="data-box color-red">
الحصيلة
<span class="total-death data color-red"></span>
</p>
<p class="data-box">
وفايات جديدة
<span class="new-death data"></span>
</p>
</div>
</div>
<div class="display-data">
<h2 class="title">التحاليل</h2>
<div class="boxes">
<p class="data-box ">
العدد الاجمالي للتحاليل التي تم القيام بها
<span class="total-tests data"></span>
</p>
</div>
</div>
<div id="curve_chart_arab" class="chart" style="height: 500px;"></div>
<div class="timeLine">
<h2 class="title show_table">جدول تطور الحالة الوبائية</h2>
<div class="timelineTable">
<table class="dataTable">
<thead>
<tr>
<th>التاريخ</th>
<th>الحالات المستجدة</th>
<th>الوفايات المستجدة</th>
<th>العدد الاجمالي للحالات</th>
<th>المتعافون</th>
<th>العدد الاجمالي للوفايات</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="./scriptAr.js"></script>
</body>
</html>