-
Notifications
You must be signed in to change notification settings - Fork 0
/
intro.html
156 lines (142 loc) · 5.46 KB
/
intro.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width" initial-scale="1">
<title>Intro</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/main.css">
<style type="text/css">
@font-face {
font-family: myFont;
src: url(A-Hayat.ttf);
}
body {
color: white;
font-family: myFont;
cursor: url("mouse.ico"), auto;
}
.algin
{
text-align: right;
}
.btnM {
margin-top: 8%;
}
footer {
margin-top: 13%;
}
ul {
list-style-type: none;
}
li {
margin-top: 10px;
margin-left: 5px;
color: red;
text-align: center;
}
h1 {
padding: 5px;
text-align: center;
background-color: #0a0c18;
}
#about {
background-color: #0a0c18;
color: white;
border: solid 2px #4d0d8d;
}
#howTo {
background-color: #0a0c18;
color: white;
border: solid 2px #4d0d8d;
}
#login {
background-color: #0a0c18;
color: white;
border: solid 2px #4d0d8d;
}
</style>
</head>
<body style=" background-image:url(sources/image.jpeg);">
<section class="container-fluid">
<section class="row" style="height: 80%;">
<article class="offset-1"></article>
<article class="col-md-2 border-success">
<br />
<input id="login" class="btn btn-success btnM" data-toggle="modal" data-target="#v1" type="button"
value="من هم مطورى اللعبة">
<br />
<input id="howTo" class="btn btn-success btnM" data-toggle="modal" data-target="#v2" type="button"
value=" شروط اللعبة ">
<br />
<br />
</article>
<article class="offset-2"></article>
<article class="col-6">
<br /><br />
<section class="modal" id="v1">
<div class="modal-dialog">
<div class="modal-content">
<h1>مطورى اللعبة</h1>
<ul>
<li>احمد قرنى</li>
<li>محمد عصام</li>
<li>احمد رمضان</li>
</ul>
<div class="modal-footer">
<button type="button" class="btn btn-danger" style="margin-right: 40%;"
data-dismiss="modal">اغلاق</button>
</div>
</div>
</div>
</section>
<section class="modal" id="v2">
<div class="modal-dialog">
<div class="modal-content">
<h1>شروط المسابقة</h1>
<ul class="list-group">
<li class="">عليك اكمال كل مراحل اللعبة وعدم الخروج منها</li>
<li class="">لك ان تستخدم اختيار حذف اجابتين مرة واحدة</li>
<li class="">يمكنك الاستعانة برأى الجمهورة مرة واحدة</li>
</ul>
<div class="modal-footer">
<button type="button" class="btn btn-danger" style="margin-right: 40%;"
data-dismiss="modal">اغلاق</button>
</div>
</div>
</div>
</section>
<section>
<form action="Game.html" method="GET" style="text-align: right;">
<div>
<label class="algin">ادخل اسمك</label>
</div>
<div>
<input type="text" name="playerName" class="form-control text-center" placeholder="اكتب اسمك"required />
</div>
<div>
<input type="submit" id="login" value="ادخل اللعبة"
class="btn btn-success btn-lg form-control btnM" />
</div>
</form>
</section>
</article>
</section>
<footer class="row">
<div class="offset-1"></div>
<div class="col-5">
<h2>من سيربح المليون؟</h2>
<h3>Sponserd by ITI Minia</h3>
<h3>© Copyright 2020 </h3>
</div>
</footer>
</section>
<link rel="stylesheet" href="Scripts/html5shiv.min.js">
<link rel="stylesheet" href="Scripts/respond.min.js">
<script src="Scripts/jquery.js"></script>
<script src="Scripts/popper.js"></script>
<script src="Scripts/bootstrap.min.js"></script>
<script src="Scripts/custom.js"></script>
</body>
</html>