-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqheader.php
165 lines (157 loc) · 6.17 KB
/
qheader.php
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
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en" dir="lrt">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>IQMAH</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/animate.min.css" rel="stylesheet">
<link href="css/prettyPhoto.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link rel="shortcut icon" href="images/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="images/ico/apple-touch-icon-57-precomposed.png">
<style type="text/css">
#quran p{
font-size: 6rem;
padding: 4rem;
}
#quran p:hover{
/*background-color: #6ee2d3;*/
color: #8ee1ea;
border-bottom: 2px solid #8ee1ea;
border-top: 2px solid #8ee1ea;
}
#start{
text-align: center;
font-size: 6rem;
padding: 5rem 0 5rem;
}
.ml-auto, .mx-auto {
margin-left: auto!important;
}
.mr-auto, .mx-auto {
margin-right: auto!important;
}
.d-block {
display: block!important;
}
.bg-primary {
background-color: #1EBB11!important;
}
.card {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
}
.card-header:first-child {
border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}
.card-header {
padding: .75rem 1.25rem;
margin-bottom: 0;
background-color: rgba(0,0,0,.03);
border-bottom: 1px solid rgba(0,0,0,.125);
}
.card-body {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 1.25rem;
}
.float-right {
float: right!important;
}
.float-left {
float: left!important;
}
.text-white {
color: #fff!important;
}
.mb-3, .my-3 {
margin-bottom: 1rem!important;
}
.bg-success {
background-color: #28a745!important;
}
.bg-warning, .badge-warning, .badge-primary {
background-color: #ffc107!important;
}
</style>
</head>
<body class="homepage ltr">
<header id="header">
<div class="top-bar hidden-xs">
<div class="container">
<div class="row">
<div class="col-sm-6 col-xs-4">
<div class="top-number">
<p><i class="fa fa-phone-square"></i> 09063780937</p>
</div>
</div>
<div class="col-sm-6 col-xs-8">
<div class="social">
<ul class="social-share">
<li><a href="#"><i class="fa fa-facebook"></i></a>
</li>
<li><a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="#"><i class="fa fa-instagram"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<nav class="navbar navbar-inverse" role="banner">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.php">IQMAH</a>
</div>
<div class="collapse navbar-collapse navbar-right">
<ul class="nav navbar-nav">
<li class="active"><a href="index.php">Home</a>
</li>
<!-- <li><a href="gallery.php">Gallery</a></li> -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Categories <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu">
<li><a href="quran.php">Quran</a></li>
<li><a href="hadith.php">Hadith</a></li>
<li><a href="sermon.php">Sermon</a></li>
<li><a href="madrasa.php">Madrasah</a></li>
<li><a href="misconceptions.php">Misconceptions</a></li>
</ul>
</li>
<li><a href="blog/index.php">Blog</a></li>
<li><a href="contact-us.php">Contact</a></li>
</ul>
</div>
</div>
</nav>
</header>