-
Notifications
You must be signed in to change notification settings - Fork 0
/
surah.html
55 lines (50 loc) · 1.48 KB
/
surah.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
defer
src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"
></script>
<!-- <script defer src="index.js"></script> -->
<style>
@font-face {
font-family: arabic-c-font;
src: url(assets/uthman_tn09.otf);
}
body {
font-size: 2rem;
}
.arabic-surah-name-li,
#bismillah {
font-family: arabic-c-font;
}
#bismillah {
text-align: center;
}
.aya-text {
font-family: arabic-c-font;
text-align: right;
font-size: 2.3rem;
}
</style>
<title>My Quran</title>
</head>
<body>
<audio controls>
<source
src="https://download.quranicaudio.com/qdc/mishari_al_afasy/murattal/2.mp3"
type="audio/mpeg"
/>
Your browser does not support the audio element.
</audio>
<div id="aya-here">Hi</div>
<script src="exp.js"></script>
</body>
</html>