-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
106 lines (100 loc) · 2.84 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
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
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/Kuran/image/icon.png">
<title>Iqra V4 Giriş</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
body{
background: #f2f2f2;
font-family: 'Poppins', sans-serif;
font-size: 15px;
}
div {
margin: 0.5em;
border: 1px solid gray;
padding: 0.5em;
display: inline-block;
background: honeydew;
/* width: 290px; */
height: 300px;
}
a img {
position: relative;
top: 17px;
width: 50px;
}
.repo, .link {
display: inline-block;
text-align: center;
text-decoration: none;
border-radius: 10px;
border: 2px solid gray;
padding: 5px 15px;
}
.repo:hover, .link:hover {
background: #6f6fff;
}
.repo {
width: 90px;
font-size: 24px;
color: white;
background: rgb(30, 30, 250);
}
.link {
width: 62px;
font-size: 18px;
margin: 0 5px;
color: black;
background: rgb(167, 248, 248);
}
</style>
</head>
<body>
<h1>Iqra4 – Okuyun 
<a class=github name=""></a>
</h1>
<p>
Kuran-ı Kerim'de araştırma ve keşif için<br>
üç bölümden ibaret, açık kaynak yazılım.<br>
<br>
Her bölüm GitHub'da ayrı bir repo:
</p>
<div>
<a class=repo href="/Kuran/">Kuran</a> 
<a><img src="/Kuran/image/icon.png" /></a> 
<a class=github name="Kuran"></a>
<p>Iqra4 giriş sayfası ve dokümanları</p>
<a class=link href="/Kuran/#r=sjd">Mucem</a> Kelime kökleri<br><br>
<a class=link href="/Kuran/#b=bisomi">Rehber</a> Kelime ara<br><br>
<a class=link href="/Kuran/guideQ.html" target="Kuran">Yardım</a> Yardım sayfaları<br><br>
</div>
<div>
<a class=repo href="/Rehber/">Rehber</a> 
<a class=github name="Rehber"></a> A. Rajab
<p>FSMVÜ mezuniyet projesi (2020)</p>
<a class=link href="/Rehber/finder.html">Ara</a> Kelime aramak için<br><br>
<a class=link href="/Rehber/reader.html">Oku</a> Ana metni okumak için<br><br>
<a class=link href="/Rehber/simi.html">Simi</a> Ayetlerin benzerliği
<br><br>
</div>
<div>
<a class=repo href="/Kitap/">Kitap</a> 
<a class=github name="Kitap"></a> M A Eyler
<p>Yazılımı kullanan kitap sayfaları</p>
<a class=link href="/Kuran/#m=index">30 gün</a> 2020 Ramazan notları<br><br>
<a class=link href="/Kuran/#d=index">Dersler</a> Kuran kelimelerinin gücü<br><br>
<a class=link href="/Kuran/#e=index">Esmâ</a> Allah'ın güzel isimleri
<br><br>
</div>
<script>
for (let a of document.querySelectorAll('a.github')) {
a.href = "https://github.com/Okuyun/"+a.name
a.title = "GitHub repository"; a.target = "Kuran"
a.innerHTML = '<img alt="https://github.com/Okuyun/'
+a.name+'" src="github.png" />'
}
</script>
</html>