-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
378 lines (348 loc) · 19 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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
<!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>Revo</title>
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- normalize css -->
<link rel = "stylesheet" href = "css/normalize.css">
<!-- custom css -->
<link rel = "stylesheet" href = "css/main.css">
</head>
<body>
<!-- header -->
<header class = "header bg-blue">
<nav class = "navbar bg-blue">
<div class = "container flex">
<a href = "index.html" class = "navbar-brand">
<img src = "images/logo.png" alt = "site logo">
</a>
<button type = "button" class = "navbar-show-btn">
<img src = "images/ham-menu-icon.png">
</button>
<div class = "navbar-collapse bg-white">
<button type = "button" class = "navbar-hide-btn">
<img src = "images/close-icon.png">
</button>
<ul class = "navbar-nav">
<li class = "nav-item">
<a href = "#" class = "nav-link">Home</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">About</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">Service</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">Drug</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">Departments</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">Blog</a>
</li>
<li class = "nav-item">
<a href = "#" class = "nav-link">Contact</a>
</li>
</ul>
<div class = "search-bar">
<form>
<div class = "search-bar-box flex">
<span class = "search-icon flex">
<img src = "images/search-icon-dark.png">
</span>
<input type = "search" class = "search-control" placeholder="Search here">
</div>
</form>
</div>
</div>
</div>
</nav>
<div class = "header-inner text-white text-center">
<div class = "container grid">
<div class = "header-inner-left">
<h1>your most trusted<br> <span>health partner</span></h1>
<p class = "lead">PharmaPredict</p>
<p class = "text text-md">Revolutionizing Drug-Drug Interaction Prediction</p>
<div class = "btn-group">
<a href = "https://project-dawn.streamlit.app/" class = "btn btn-light-blue">Predict Now !!!</a>
</div>
</div>
<div class = "header-inner-right">
<img src = "images/header.png">
</div>
</div>
</div>
</header>
<!-- end of header -->
<main>
<!-- about section -->
<section id = "about" class = "about py">
<div class = "about-inner">
<div class = "container grid">
<div class = "about-left text-center">
<div class = "section-head">
<h2>Drug-Drug Interaction (DDI) Predictor</h2>
<div class = "border-line"></div>
</div>
<p class = "text text-lg">Drug-Drug Interaction (DDI) Predictor Our DDI Predictor employs state-of-the-art machine learning models trained on extensive pharmaceutical databases. This ensures that our predictions are not only accurate but also capable of identifying previously unknown interactions, thereby advancing patient safety.</p>
<a href = "#" class = "btn btn-white">Learn More</a>
</div>
<div class = "about-right flex">
<div class = "img">
<img src = "images/about-img.png">
</div>
</div>
</div>
</div>
</section>
<!-- end of about section -->
<!-- banner one -->
<section id = "banner-one" class = "banner-one text-center">
<div class = "container text-white">
<blockquote class = "lead"><i class = "fas fa-quote-left"></i> When you are young and healthy, it never occurs to you that in a single second your whole life could change. <i class = "fas fa-quote-right"></i></blockquote>
<small class = "text text-sm">- Anonim Nano</small>
</div>
</section>
<!-- end of banner one -->
<!-- services section -->
<section id = "services" class = "services py">
<div class = "container">
<div class = "section-head text-center">
<h2 class = "lead">The Best Doctor gives the correct medicines</h2>
<p class = "text text-lg">A perfect way to help our doctors</p>
<div class = "line-art flex">
<div></div>
<img src = "images/4-dots.png">
<div></div>
</div>
</div>
<div class = "services-inner text-center grid">
<article class = "service-item">
<div class = "icon">
<img src = "images/service-icon-1.png">
</div>
<h3>Cost-Effective Healthcare</h3>
<p class = "text text-sm">By flagging potential drug interactions early in the treatment process, our solution prevents adverse reactions that could lead to costly hospitalizations. This proactive approach significantly reduces healthcare expenses and contributes to more sustainable and affordable healthcare systems.</p>
</article>
<article class = "service-item">
<div class = "icon">
<img src = "images/service-icon-2.png">
</div>
<h3>Elderly-Friendly Care</h3>
<p class = "text text-sm">The elderly often face complex medication regimens due to multiple health conditions. Our DDI Predictor empowers healthcare providers to manage these regimens more effectively, ensuring that the elderly receive safe and optimized treatment plans, ultimately enhancing their quality of life.</p>
</article>
<article class = "service-item">
<div class = "icon">
<img src = "images/service-icon-3.png">
</div>
<h3>Personalized Medicine</h3>
<p class = "text text-sm">Our solution recognizes that one-size-fits-all approaches to medication can be ineffective and even risky. By considering individual patient profiles, including genetic information when available, we enable personalized medicine, where treatments are tailored to each patient's unique needs and characteristics.</p>
</article>
<article class = "service-item">
<div class = "icon">
<img src = "images/service-icon-4.png">
</div>
<h3>Pharmacogenomic Insights</h3>
<p class = "text text-sm">We integrate pharmacogenomic data into our predictions, allowing healthcare professionals and researchers to gain deeper insights into the genetic factors influencing drug interactions. This not only improves the accuracy of our predictions but also contributes to advancements in pharmacogenomics</p>
</article>
</div>
</div>
</section>
<!-- end of services section -->
<!-- banner two section -->
<section id = "banner-two" class = "banner-two text-center">
<div class = "container grid">
<div class = "banner-two-left">
<img src = "images/Screenshot 2023-09-10 201615.png">
</div>
<div class = "banner-two-right">
<p class = "lead text-white">Code for life and code to save lives</p>
<div class = "btn-group">
<a href = "#" class = "btn btn-white">Learn More</a>
<a href = "#" class = "btn btn-light-blue">Sign In</a>
</div>
</div>
</div>
</section>
<!-- end of banner two section -->
<!-- doctors section -->
<section id = "doc-panel" class = "doc-panel py">
<div class = "container">
<div class = "section-head">
<h2>Our Team</h2>
</div>
<div class = "doc-panel-inner grid">
</div>
<div class = "doc-panel-item">
<div class = "img flex">
<img src = "images/ani holi_edited.jpg" alt = "doctor image">
<div class = "info text-center bg-blue text-white flex">
<p class = "lead">Anirudh Venkateswaran</p>
<p class = "text-lg">Developer</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end of doctors section -->
<!-- package services section -->
<section id = "package-service" class = "package-service py text-center">
<div class = "container">
<div class = "package-service-head text-white">
<h2>Data exploration & processing</h2>
<p class = "text text-lg">The method behind the magic !!!</p>
</div>
</div>
</div>
</section>
<!-- end of package services section -->
<!-- posts section -->
<section id = "posts" class = "posts py">
<div class = "container">
<div class = "section-head">
<h2>Latest Post</h2>
</div>
<div class = "posts-inner grid">
<article class = "post-item bg-white">
<div class = "img">
<img src = "images/post-1.jpg">
</div>
<div class = "content">
<h4>Inspiring stories of person and family centered care during a global pandemic.</h4>
<p class = "text text-sm">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolor voluptas eius recusandae sunt obcaecati esse facere cumque. Aliquid, cupiditate debitis.</p>
<p class = "text text-sm">Lorem ipsum dolor sit amet consectetur adipisicing elit. Nobis quia ipsam, quis iure sed nulla.</p>
<div class = "info flex">
<small class = "text text-sm"><i class = "fas fa-clock"></i> October 27, 2021</small>
<small class = "text text-sm"><i class = "fas fa-comment"></i> 5 comments</small>
</div>
</div>
</article>
<article class = "post-item bg-white">
<div class = "img">
<img src = "images/post-2.jpg">
</div>
<div class = "content">
<h4>Inspiring stories of person and family centered care during a global pandemic.</h4>
<p class = "text text-sm">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolor voluptas eius recusandae sunt obcaecati esse facere cumque. Aliquid, cupiditate debitis.</p>
<p class = "text text-sm">Lorem ipsum dolor sit amet consectetur adipisicing elit. Nobis quia ipsam, quis iure sed nulla.</p>
<div class = "info flex">
<small class = "text text-sm"><i class = "fas fa-clock"></i> October 27, 2021</small>
<small class = "text text-sm"><i class = "fas fa-comment"></i> 5 comments</small>
</div>
</div>
</article>
<article class = "post-item bg-white">
<div class = "img">
<img src = "images/post-3.jpg">
</div>
<div class = "content">
<h4>Inspiring stories of person and family centered care during a global pandemic.</h4>
<p class = "text text-sm">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolor voluptas eius recusandae sunt obcaecati esse facere cumque. Aliquid, cupiditate debitis.</p>
<p class = "text text-sm">Lorem ipsum dolor sit amet consectetur adipisicing elit. Nobis quia ipsam, quis iure sed nulla.</p>
<div class = "info flex">
<small class = "text text-sm"><i class = "fas fa-clock"></i> October 27, 2021</small>
<small class = "text text-sm"><i class = "fas fa-comment"></i> 5 comments</small>
</div>
</div>
</article>
</div>
</div>
</section>
<!-- end of posts section -->
<!-- contact section -->
<section id = "contact" class = "contact py">
<div class = "container grid">
<div class = "contact-left">
<iframe src="" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
<div class = "contact-right text-white text-center bg-blue">
<div class = "contact-head">
<h3 class = "lead">Contact Us</h3>
<p class = "text text-md"></p>
</div>
<form>
<div class = "form-element">
<input type = "text" class = "form-control" placeholder="Your name">
</div>
<div class = "form-element">
<input type = "email" class = "form-control" placeholder="Your email">
</div>
<div class = "form-element">
<textarea rows = "5" placeholder="Your Message" class = "form-control"></textarea>
</div>
<button type = "submit" class = "btn btn-white btn-submit">
<i class = "fas fa-arrow-right"></i> Send Message
</button>
</form>
</div>
</div>
</section>
<!-- end of contact section -->
</main>
<!-- footer -->
<footer id = "footer" class = "footer text-center">
<div class = "container">
<div class = "footer-inner text-white py grid">
<div class = "footer-item">
<h3 class = "footer-head">about us</h3>
<div class = "icon">
<img src = "images/logo.png">
</div>
<p class = "text text-md"></p>
<address>
</address>
</div>
<div class = "footer-item">
<h3 class = "footer-head">tags</h3>
<ul class = "tags-list flex">
<li>medical care</li>
<li>emergency</li>
<li>therapy</li>
<li>surgery</li>
<li>medication</li>
<li>nurse</li>
</ul>
</div>
<div class = "footer-item">
<h3 class = "footer-head">Quick Links</h3>
<ul>
<li><a href = "#" class = "text-white">Our Services</a></li>
<li><a href = "#" class = "text-white">Our Plan</a></li>
<li><a href = "#" class = "text-white">Privacy Policy</a></li>
<li><a href = "#" class = "text-white">Appointment Schedule</a></li>
</ul>
</div>
<div class = "footer-item">
<h3 class = "footer-head">Contact me</h3>
<p class = "text text-md"></p>
<i class = "fas fa-envelope"></i>
<span>[email protected]</span>
</li>
<li>
<i class = "fas fa-phone"></i>
<span>+91 9789044918</span>
</li>
</ul>
</div>
</div>
<div class = "footer-links">
<ul class = "flex">
<li><a href = "#" class = "text-white flex"> <i class = "fab fa-facebook-f"></i></a></li>
<li><a href = "#" class = "text-white flex"> <i class = "fab fa-twitter"></i></a></li>
<li><a href = "#" class = "text-white flex"> <i class = "fab fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</footer>
<!-- end of footer -->
<!-- custom js -->
<script src = "js/script.js"></script>
</body>
</html>