-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (71 loc) · 3.08 KB
/
index.html
File metadata and controls
90 lines (71 loc) · 3.08 KB
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
<!DOCTYPE html>
<html dir="rtl" lang="ar">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Arabic Hangman game - لعبة المشنقة</title>
<meta name="description" content="hangman game, arabic hangma, learn Arabic">
<meta name="author" content="nbyl">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="index/normalize.css">
<link rel="stylesheet" href="index/skeleton.css">
<link rel="stylesheet" href="index/style.css">
<style>
@import url(http://fonts.googleapis.com/earlyaccess/amiri.css);
body{
font-family: 'Amiri', serif;
}
.button,p {
font-size:18px;
}
.button {
/*background: #eee;*/
}
p{
margin:10px auto;
}
.sb{
width: 300px; margin:10px auto 0;
}
</style>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="index/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container centric">
<div class="row header" style="margin-top: 6%">
<h2>مختبر سين جيم لتطوير المشانق</h2>
<h4></h4>
</div>
<img src="index/hangman.png" style="width: 300px;margin:2% 0" />
<p>اختر إحدى النسخ :</p>
<div class="row">
<div class="column">
<a class="button" href="hangman/index.html">المشنقة البسيطة لمتعلميّ العربية</a>
<br/><a class="button" href="qhangman/index.html">المشنقة المتقدمة مع الأسئلة</a>
<hr class="sb" />
<p>أدوات :</p>
<a class="button" href="tools/hider/index.html">مُقطع الكلمات</a>
</div>
</div>
<!--<a href="README.md">README</a>-->
<div class="row footer" style="margin-top:2%">
<p>المشنقة - مخزن سين جيم © 2015</p>
<a href="index_en.html">[en]</a>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>