forked from SarveshMishra/1mg-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packagedetails.html
80 lines (77 loc) · 2.54 KB
/
packagedetails.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
<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>Package Details</title>
<link
rel="shortcut icon"
href="./image/faviconRebrand.ico"
type="image/x-icon"
/>
<link rel="stylesheet" href="./css/index.css" />
<link rel="stylesheet" href="./components/header/navbar.css" />
<link rel="stylesheet" href="./components/footer/footer.css" />
<link rel="stylesheet" href="./css/packagedetails.css" />
</head>
<body>
<!-- Navbar Section -->
<div class="navbar">
<div class="header-sec-1"></div>
<div class="search-box"></div>
</div>
<!--body section -->
<div id="package-details-container">
<div id="package-details"></div>
<div id="mg-details">
<div class="mg-heading">
<h2>TATA 1mg Labs (TATA 1mg Technologies Private Limited)</h2>
<div class="rating">
<span>4.3</span>
<img src="./image/star.png" />
</div>
</div>
<hr />
<div class="iso">
<img src="./image/isocertified.png" />
<p>ISO</p>
</div>
<p>
TATA 1mg labs is a state-of-art facility offering the highest quality
diagnostic services at the convenience of your doorstep. We pride
ourselves on three things 1) Assured Quality 2) Best Prices 3)
Excellent Turn Around Time. We believe in providing the highest level
of transparency to our customers. Testimony to the quality is the ISO
certification, a gold standard in the quality of diagnostics. Our
entire team is dedicated to providing the best customer experience and
continuously strives to
</p>
<h4>Know More</h4>
<div class="user_review">
<h2>User Review</h2>
<hr />
<div class="user-comments">
<div class="user_dp">S</div>
<div class="user_name">Subodh Rout</div>
<div class="user_remarks">
Really impressed with the quality of service and on quick delivery
of report. I do recommend others to use 1mg service
</div>
</div>
<div class="user-comments">
<div class="user_dp">A</div>
<div class="user_name">Subodh Rout</div>
<div class="user_remarks">
Really impressed with the quality of service and on quick delivery
of report. I do recommend others to use 1mg service
</div>
</div>
</div>
<div class="more">+more</div>
</div>
</div>
<!-- Footer Section -->
<section class="footer"></section>
<script type="module" src="./js/packagedetails.js"></script>
</body>
</html>