-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (68 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prayers Times</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<center>Prayer times according to your address</center>
<!-- Year -->
<div class="prayer-form">
<br><label for="">Select Year</label><br>
<Select class="inp" name="year">
<option value="">Select year</option>
</Select>
<!-- Months -->
<br><label for="">Select Month</label><br>
<select class="inp" name="month" id="">
<option value="">Select Month</option>
</select>
<!-- Methods -->
<br><label for="">Select Method</label><br>
<select class="inp" name="method" id="">
<option value="">Select School or Sector</option>
<option value="0">Shia Ithna-Ansari</option>
<option value="1">University of Islamic Sciences, Karachi</option>
<option value="2">Islamic Society of North America</option>
<option value="3">Muslim World League</option>
<option value="4">Umm Al-Qura University, Makkah</option>
<option value="5">Egyptian General Authority of Survey</option>
<option value="6">Institute of Geophysics, University of Tehran</option>
<option value="7">Gulf Region</option>
<option value="8">Kuwait</option>
<option value="9">Qatar</option>
<option value="10">Majlis Ugama Islam Singapura, Singapore</option>
<option value="11">Union Organization islamic de France</option>
<option value="12">Diyanet İşleri Başkanlığı, Turkey</option>
<option value="13">Spiritual Administration of Muslims of Russia</option>
</select>
<br><label for="">Country</label><br>
<input class="country" type="text" name="country" placeholder="Enter your country">
<br><label for="">Mosque name</label><br>
<input type="text" name="mosque" placeholder="Enter your state">
<br><label for="">City</label><br>
<input type="text" name="city" placeholder="Enter your city">
<button id="getTime">Show Prayer Time</button>
</div>
<!--Showing results -->
<div class="prayer_times" >
<table>
<tr>
<th>Date</th>
<th>Fajr</th>
<th>Zuhr</th>
<th>Asr</th>
<th>Maghrib</th>
<th>Isha</th>
</tr>
<tbody id="prayerContainer">
</tbody>
</table>
</div>
</body>
</html>
<script src="jquery.js"></script>
<script src="Muslim-PrayerTime.js"></script>