-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
301 lines (273 loc) · 12 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital Health Passport</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="DHP.css">
<style>
body {
background-color: #f8f9fa;
}
.navbar {
background-color: #264488; /* Primary color for the navbar */
}
.navbar-brand,
.nav-link {
color: #f8f9fa !important; /* Changed to a lighter color */
transition: color 0.3s; /* Smooth transition for hover */
font-weight: bold;
}
.navbar-nav .nav-link:hover {
color: #D66025 !important; /* Change color on hover */
}
.hero-section {
position: relative;
height: 320px; /* Set height for the carousel */
}
.carousel-inner img {
height: 320px; /* Maintain height */
object-fit: cover; /* Ensure images cover the area without distortion */
}
.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h5 {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add text shadow for better visibility */
}
.info-container {
display: flex;
flex-direction: row; /* Align items horizontally */
justify-content: center; /* Center content */
align-items: flex-start; /* Align items at the start vertically */
margin: 20px 0; /* Add margin around the section */
}
.info-section {
background-color: #f0f0f0; /* Background color */
padding: 20px; /* Add padding */
max-width: 500px; /* Limit width of the info section */
margin-left: 20px; /* Space between video and info section */
border-radius: 8px; /* Rounded corners */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow effect */
}
.text-container {
color: #264488;
font-weight: bolder;
font-size: 1.2rem; /* Set font size */
font-style: italic; /* Make text italic */
}
.video-section {
position: relative;
width: 100%; /* Set width to 100% */
max-width: 560px; /* Max width for video */
}
.video-section video {
width: 100%;
height: auto; /* Set height to auto to maintain aspect ratio */
object-fit: cover; /* Ensure video covers the area */
}
.benefits-box {
border-radius: 10px;
background-color: white;
color: #264488;
text-align: center;
padding: 20px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
footer {
background-color: #37475a; /* Footer color */
color: white;
padding: 20px;
}
footer a {
color: #dddddd;
}
@media (max-width: 768px) {
.carousel-caption h1 {
font-size: 1.5rem; /* Smaller font size for smaller screens */
}
.carousel-caption h2 {
font-size: 1.2rem; /* Smaller font size for smaller screens */
}
.info-container {
flex-direction: column; /* Stack elements on smaller screens */
align-items: center; /* Center align items */
}
.info-section {
margin-left: 0; /* Remove margin on smaller screens */
margin-top: 20px; /* Add top margin for separation */
max-width: none; /* Remove max-width for small screens */
width: 100%; /* Full width on small screens */
}
.text-container {
text-align: center; /* Center align text */
padding: 10px; /* Adjust padding */
}
}
@media (max-width: 576px) {
.benefits-box {
margin-bottom: 20px; /* Add space between boxes on small screens */
}
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<a class="navbar-brand" href="#"><i class="fas fa-stethoscope"></i> Digital Health Passport</a>
<button class="navbar-toggler" 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">
<a class="nav-link" href="DHP.html"> Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="AboutSection.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="servicespage.html">Service</a>
</li>
<li class="nav-item">
<a class="nav-link" href="FAQ's.html">FAQ's</a>
</li>
<li class="nav-item">
<a class="nav-link" href="HelpManagement.html">Help</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="hero-section">
<div id="heroCarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="slide3.png" class="d-block w-100" alt="Slide 1">
</div>
<div class="carousel-item">
<img src="slide[2].png" class="d-block w-100" alt="Slide 2">
</div>
<div class="carousel-item">
<img src="slide1.jpg" class="d-block w-100" alt="Slide 3">
</div>
<div class="carousel-item">
<img src="slide1card (1).jpg" class="d-block w-100" alt="Slide 4">
</div>
<div class="carousel-item">
<img src="slide4-transformed.jpeg" class="d-block w-100" alt="Slide 5">
</div>
</div>
<a class="carousel-control-prev" href="#heroCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#heroCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="carousel-caption d-none d-md-block">
<h1>Create Digital Health Passport Account - DHPA Number</h1>
<h2>Creating India's Digital Health Mission</h2>
<h5>DHPA - Digital Health Passport Account - Key to your digital healthcare journey.</h5>
<a href="registration_page.html" class="btn btn-warning mt-3">Create DHPA Number</a>
<p class="mt-2">Already Have DHPA Number? <a href="loginpage1.html" style="color: #D66025;">Login</a></p>
</div>
</div>
<!-- Info and Video Section -->
<div class="info-container">
<!-- Video Section -->
<div class="video-section">
<video controls autoplay muted loop>
<source src="VID_20240806193733.mp4" type="video/mp4">
<!-- Your browser does not support HTML5 video. -->
</video>
</div>
<!-- Info Section -->
<div class="info-section">
<div class="text-container">
<p>
Your Digital Health Passport Account (DHPA) Number is a hassle-free method of accessing and sharing your health records digitally.
It enables your interaction with participating healthcare providers, and allows you to receive your digital lab reports,
prescriptions, and diagnosis seamlessly from verified healthcare professionals and health service providers.
</p>
</div>
</div>
</div>
<div class="container text-center my-5">
<h1>Benefits of DHPA Number</h1>
<div class="row mt-4">
<div class="col-md-3 col-sm-6">
<div class="benefits-box">
<i class="fas fa-user-check fa-3x"></i>
<h5>Unique & Trustable Identity</h5>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="benefits-box">
<i class="fas fa-lock fa-3x"></i>
<h5>Data Security or Privacy</h5>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="benefits-box">
<i class="fas fa-file-medical fa-3x"></i>
<h5>Health Information Accessibility</h5>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="benefits-box">
<i class="fas fa-user-md fa-3x"></i>
<h5>Easy Personal Health Record Sign Up</h5>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="text-center mb-3">
<a href="#"><b>Back to Top</b></a>
</div>
<div class="row">
<div class="col-md-3">
<h3>Get to Know Us</h3>
<a href="AboutSection.html">About Us</a><br>
<a href="#">Contact Us</a><br>
<a href="servicespage.html">Service</a>
</div>
<div class="col-md-3">
<h3>Connect with Us</h3>
<a href="#">Facebook</a><br>
<a href="#">Twitter</a><br>
<a href="#">Instagram</a><br>
<a href="#">YouTube</a>
</div>
<div class="col-md-3">
<h3>Let Us Help You</h3>
<a href="#">Your Account</a><br>
<a href="DP&DS.html">Data Privacy</a><br>
<a href="DP&DS.html">Data Security</a><br>
<a href="HelpManagement.html">Help</a>
</div>
<div class="col-md-3">
<h3>Policies</h3>
<a href="T&C.html">Terms and Conditions</a><br>
<a href="#">Website Policies</a><br>
<a href="DP&DS.html">Data Privacy Policy</a><br>
<a href="#">Health Data Management Policy</a>
</div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>