-
Notifications
You must be signed in to change notification settings - Fork 1
/
service.html
105 lines (79 loc) · 3.95 KB
/
service.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
<!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>Medi-Rizsh : Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" charset="utf-8">
<link rel="icon" href="img/favicon.ico" type="image/x-icon" style="width: 40px;">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js" crossorigin="anonymous"></script>
<link href="assets/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style1.css">
<script type="text/javascript" src="js/script.js"></script>
<style>
hr{
width: 200px;
background-color: #f5edf2;
}
</style>
<nav class="navbar navbar-expand-lg navbar-light bg-success nav-menu">
<div class="brand-title">Medi-Rizsh<img src="img/medlogo.png" alt="" width="100px" height="80px"></div>
<button class="navbar-toggler btn-outline-light" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="service.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="healthcare.html">Healthcares</a>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutus.html">About Us</a>
</li>
<a href="signin.html" id="arrow"><i class="fas fa-sign-in-alt fa-2x"></i></a>
</ul>
</div>
</nav>
</head>
<body>
<div id="preloader"></div>
</body>
<footer class="footer mt-auto py-1">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12">
<h4 style="color: #0a0a0a; font-family: monospace;">Medi-Rizsh<hr></h4>
<img src="img/medlogo.png" alt="medsnake" height="100px" width="100px";>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<h4 style="color: #0a0a0a; font-family: monospace;">Contact Us<hr></h4>
<a id="mail" href="#" style="color: #0a0a0a; font-family: monospace; font-size: 17px;">[email protected]</a>
<p style="color: #0a0a0a; font-family: monospace; font-size: 17px;">+959 988 000 000</p>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<h4 style="color: #0a0a0a; font-family: monospace;">Follow Us<hr></h4>
<a href="https://www.facebook.com/zarchi.afsheen.7" target="blank"><i class="fab fa-facebook-square"></i></a>
<a href="https://www.youtube.com/" target="blank"><i class="fab fa-youtube"></i></a>
<a href="https://twitter.com/XstVjo?s=09" target="blank"><i class="fab fa-twitter-square"></i></a>
</div>
</div>
<span style="color: #0a0a0a;">© 2021 <a href="#" id="ourname" target="blank">Medi-Rizsh</a> All rights Reserved.</span>
</div>
</footer>
<!-- preloader -->
<script>
var loader = document.getElementById("preloader");
window.addEventListener("load", function() {
loader.style.display = "none";
})
</script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="assets/js/vendor/jquery.slim.min.js"><\/script>')</script>
<script src="assets/dist/js/bootstrap.bundle.min.js"></script>
</html>