-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (66 loc) · 3.31 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
<!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">
<link rel="shortcut icon" href="https://www.freeiconspng.com/thumbs/mosque-png/best-free-mosque-clipart-png-image-10.png" type="image/x-icon">
<title>Prayer Times</title>
<!--CDN Bootstrap5 Css-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!--CDN Fontawesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<style>
.hv:hover{
scale: 1.1;
}
</style>
<body style="background: #005A5B; color: #fff; height: 100vh;">
<div class="container">
<div class="row">
<div class="col-md-12 " >
<div class="shadow p-3 mb-5 mt-5" style=" border-radius: 30px;" >
<!--Start Country and Date-->
<figure class="text-center d-flex justify-content-around ">
<blockquote class="blockquote">
<h2 id="country" class="mt-4" ></h2>
</blockquote>
<div class="mt-5">
<figcaption class="blockquote-footer text-light">
<cite title="Source Title" ></cite>
</figcaption>
<figcaption class="blockquote-footer text-light">
<cite title="Source Title" ></cite>
</figcaption>
</div>
</figure>
<hr>
<!--End Country and Date-->
<!--Start Select To choose City-->
<form action="" >
<div class="row">
<div class="text-center fs-5"><i class="fa-solid fa-mosque"></i> Prayer Times </div>
<div class="col-md-4 mx-auto my-4" >
<select class="form-select form-select-sm rounded-pill" id="citySel">
</select>
</div>
</div>
</form>
<!--End Select To choose City-->
<!--Start Prayer Times-->
<div id="prayer-times" class="row mx-4 my-5" >
</div>
<!--End Prayer Times-->
</div>
</div>
</div>
</div>
<!--CDN Axios-->
<script src="./node_modules/axios/dist/axios.min.js"></script>
<!--CDN Bootstrap5 Js-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!--Link Js-->
<script src="/main.js"></script>
</body>
</html>