-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (45 loc) · 1.33 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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<link rel="stylesheet" href="./index.css" />
<script defer src="./index.js" type="module"></script>
<title>l</title>
</head>
<body>
<header>
<h1>مذكر الأذكار</h1>
</header>
<main>
<div class="language-selector">
<div class="group-btn">
<button id="ar-btn" class="nice-btn">Arabic</button>
<button id="en-btn" class="nice-btn">English</button>
</div>
</div>
<nav class="tab">
<ul class="tab-list">
<li><button href="#morning" id="morning-btn" class="tab-btn active">أذكار الصباح</button></li>
<li><button href="#evening" id="evening-btn" class="tab-btn">أذكار المساء</button></li>
</ul>
</div>
<div class="content">
<div id="morning" class="cards"></div>
<div id="evening" class="cards"></div>
</div>
</main>
<footer>
<a
href="https://github.com/AhmedElTabarani/azkar-reminder-extension"
target="_blank"
>
<img src="./icons/GitHub-Mark-32px.png" />
</a>
</footer>
</body>
</html>