-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (69 loc) · 2.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>LYS Edebiyat Yazar Kitap Soru - Cevap Oyunu | LYS Edebiyat Yazar - Kitap Quiz</title>
<link rel="stylesheet" href="css/quiz.css">
<link rel="stylesheet" href="css/sweetalert.css">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:300&subset=latin-ext" rel="stylesheet">
</head>
<body>
<div class="container center">
<!-- Book Name -->
<div>
<div class="row" id="question">
<div class="centered-block">
<p id="book_name">--</p>
</div>
</div>
</div>
<!-- Book Name Close -->
<!-- Scoreboard -->
<div>
<div class="row text-center">
<div class="skor pull-left"><strong>Doğru: <span id="correctAnswers">0</span></strong>
</div>
<div class="skor pull-right"><strong>Yanlış: <span id="wrongAnswers">0</span></strong>
</div>
</div>
</div>
<!-- Scoreboard Close-->
<!-- Answers -->
<div>
<div class="row answer horizontal-align" id="button_0" onclick="CheckAndCreateNewQuestion(0)">
--
</div>
</div>
<div>
<div class="row answer horizontal-align" id="button_1" onclick="CheckAndCreateNewQuestion(1)">
--
</div>
</div>
<div>
<div class="row answer horizontal-align" id="button_2" onclick="CheckAndCreateNewQuestion(2)">
--
</div>
</div>
<!-- Answers Close-->
<div>
<div class="row text-center butonlar">
<a target="_blank" href='https://play.google.com/store/apps/details?id=io.cordova.lysedebiyat&utm_source=website&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'>
<img alt="Google Play'den alın" src='img/playstore.png' height="60" />
</a>
<a target="_blank" href='https://itunes.apple.com/tr/app/lys-edebiyat-yazar-kitap-bilgi/id1174623916?l=tr&mt=8'>
<img src="img/appstore.svg" height="60" />
</a>
</div>
</div>
<div>
<div class="row bottom-exp">
Bu proje <a target="_blank" href="http://github.com/lys-edebiyat"><b>GitHub</b></a> üzerinde açık kaynak olarak geliştirilmektedir. Projeye dair tüm mobil uygulamalar ücretsizdir.
</div>
</div>
</div>
<!-- Container Close-->
</body>
<script type="text/javascript" language="javascript" src="js/sweetalert.min.js"></script>
<script type="text/javascript" language="javascript" src="js/quiz.js"></script>
</html>