-
Notifications
You must be signed in to change notification settings - Fork 0
/
trials.html
711 lines (535 loc) · 30.8 KB
/
trials.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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<base href="" />
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" type="image/png" href="images/favicon.png">
<title>Medicom</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="format-detection" content="telephone=no">
<!-- Web Font
============================================= -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800" rel="stylesheet">
<!-- CSS
================================================== -->
<!-- Theme Color
============================================= -->
<link rel="stylesheet" id="color" href="css/blue.css">
<!-- Medicom Style
============================================= -->
<link rel="stylesheet" href="css/medicom.css">
<!-- Bootstrap
============================================= -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<!-- SCRIPTS
================================================== -->
<script src="js/modernizr-2.6.2.min.js"></script>
</head>
<body class="fixed-header">
<!-- Document Wrapper
============================================= -->
<div id="wrapper" class="clearfix">
<!-- Header
============================================= -->
<header id="header" class="medicom-header">
<!-- Top Row
============================================= -->
<div class="colourfull-row"></div>
<div class="container">
<!-- Primary Navigation
============================================= -->
<nav class="navbar navbar-default" role="navigation">
<!-- Brand and toggle get grouped for better mobile display
============================================= -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#primary-nav">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="images/logo.png" alt="" title=""></a>
</div>
<div class="collapse navbar-collapse navbar-right" id="primary-nav">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Home</a>
<ul class="dropdown-menu">
<li><a href="index.html">Home Page One <label>new</label></a></li>
<li><a href="index2.html">Home Page Two</a></li>
<li><a href="index3.html">Home Page Three</a></li>
<li><a href="index4.html">Home Page Four</a></li>
<li><a href="index5.html">Home Page Five <label>new</label></a></li>
<li><a href="index-loader.html">Home Page Loader <label>new</label></a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">About Us</a>
<ul class="dropdown-menu">
<li><a href="about-us.html">About Us One</a></li>
<li><a href="sobre.html">About Us Two</a></li>
</ul>
</li>
<li class="dropdown active">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">pages</a>
<ul class="dropdown-menu">
<li><a href="patient-and-families.html">Patients & Families</a></li>
<li class="dropdown-submenu"><a href="research.html">Research</a><i class="fa fa-angle-right pull-right"></i>
<ul class="dropdown-menu">
<li class="dropdown-submenu"><a href="#.">Medicome Trials</a><i class="fa fa-angle-right pull-right"></i>
<ul class="dropdown-menu">
<li><a href="trials.html">Trials</a></li>
</ul>
</li>
<li class="dropdown-submenu"><a href="#.">Cancer Care</a><i class="fa fa-angle-right pull-right"></i>
<ul class="dropdown-menu">
<li><a href="cancer-center.html">Cancer Center</a></li>
<li><a href="cancer-center.html">Cell Death Research</a></li>
<li><a href="cancer-center.html">Brain Cancer</a></li>
<li><a href="cancer-center.html">Tumor Microenvironment</a></li>
<li><a href="cancer-center.html">Breast Cancer</a></li>
<li><a href="cancer-center.html">Childhood Cancers</a></li>
<li><a href="cancer-center.html">Endocrine Cancers</a></li>
<li><a href="cancer-center.html">Male Cancers</a></li>
<li><a href="cancer-center.html">Skin Cancer </a></li>
</ul>
</li>
<li class="dropdown-submenu"><a href="#.">Childrens Health</a><i class="fa fa-angle-right pull-right"></i>
<ul class="dropdown-menu">
<li><a href="children-health.html"> Genetic Disease</a></li>
<li><a href="children-health.html"> Growth & Development</a></li>
<li><a href="children-health.html"> Infections</a></li>
<li><a href="children-health.html"> Pregnancy & Baby</a></li>
<li><a href="children-health.html"> Nutrition & Fitness</a></li>
<li><a href="children-health.html"> Emotions & Behavior</a></li>
<li><a href="children-health.html"> Doctors & Hospitals</a></li>
<li><a href="children-health.html"> Muscle Development</a></li>
<li><a href="children-health.html"> RNA Biology</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="meet-team.html">Meet Awesome Team</a></li>
<li><a href="member-detail.html">Memmber Detail</a></li>
<li><a href="tables.html">Pricing Table</a></li>
<li><a href="appointment.html">Appointment</a></li>
<li class="dropdown-submenu"><a href="#">Portfolio</a><i class="fa fa-angle-right pull-right"></i>
<ul class="dropdown-menu">
<li><a href="gallery1.html">Portfolio one</a></li>
<li><a href="gallery2.html">Portfolio two</a></li>
<li><a href="gallery3.html">Portfolio three</a></li>
</ul>
</li>
<li><a href="services.html">Services</a></li>
<li><a href="shortcodes.html">Shortcodes</a></li>
<li><a href="error404.html">404 Not Found</a></li>
</ul>
</li>
<li class="mega-menu-item dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">DEPARTMENTS</a>
<div class="mega-menu dropdown-menu">
<img src="images/mega-menu-img.jpg" class="img-rounded" alt="" title="">
<ul>
<li><strong>Department One</strong></li>
<li><a href="medical-department.html">Medical Department</a></li>
<li><a href="medical-department.html">Body Lift Department</a></li>
<li><a href="medical-department.html">Liposuction Department</a></li>
<li><a href="medical-department.html">Eyelid Department</a></li>
<li><a href="medical-department.html">Thigh Lift Department</a></li>
<li><a href="medical-department.html">Brow Lift Department</a></li>
</ul>
<ul>
<li><strong>Department Two</strong></li>
<li><a href="medical-department.html">Arm Lift Department</a></li>
<li><a href="medical-department.html">Rhinoplasty Department</a></li>
<li><a href="medical-department.html">Ear Surgery Department</a></li>
<li><a href="medical-department.html">Tummy Tuck Department</a></li>
<li><a href="medical-department.html">Neck Lift Department</a></li>
</ul>
<ul>
<li><strong>Department Three</strong></li>
<li><a href="medical-department.html">Arm Lift Department</a></li>
<li><a href="medical-department.html">Rhinoplasty Department</a></li>
<li><a href="medical-department.html">Ear Surgery Department</a></li>
<li><a href="medical-department.html">Rhinoplasty Department</a></li>
</ul>
</div>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Gallery</a>
<ul class="dropdown-menu">
<li><a href="gallery1.html">Gallery one</a></li>
<li><a href="gallery2.html">Gallery two</a></li>
<li><a href="gallery3.html">Gallery three</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">blog</a>
<ul class="dropdown-menu">
<li><a href="blog.html">Blog one</a></li>
<li><a href="blog-single-post.html">Blog two</a></li>
<li><a href="noticias.html">Blog three</a></li>
<li><a href="blog-detail.html">Blog Detail</a></li>
</ul>
</li>
<li class="dropdown last">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Shop</a>
<ul class="dropdown-menu">
<li><a href="shop.html">Shop</a></li>
<li><a href="shop-detail.html">Shop detail</a></li>
<li><a href="shopping-cart.html">Shoping cart</a></li>
</ul>
</li>
<li class="dropdown last">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Contact Us</a>
<ul class="dropdown-menu">
<li><a href="contato.html">Contact Us one</a></li>
<li><a href="contact-us2.html">Contact Us two</a></li>
</ul>
</li>
</ul>
</div>
</nav>
</div>
<div class="header-bottom-line"></div>
</header>
<!-- Sub Page Banner
============================================= -->
<section class="sub-page-banner text-center" data-stellar-background-ratio="0.3">
<div class="overlay"></div>
<div class="container">
<h1 class="entry-title">Trails</h1>
<p>Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets.</p>
</div>
</section>
<!-- Sub Page Content
============================================= -->
<div id="sub-page-content" class="clearfix">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="procedures">
<h3>Procedures</h3>
<div class="panel-group sidebar-nav" id="accordion3">
<div class="panel panel-sidebar">
<div class="panel-heading">
<h4 class="panel-title active">
<a data-toggle="collapse" data-parent="#accordion3" href="#collapse1">
<i class="fa fa-angle-right"></i> Medicom Trials
</a>
</h4>
</div>
<div id="collapse1" class="panel-collapse collapse in">
<div class="panel-body">
<a href="trials.html" class="active"><i class="fa fa-angle-right"></i> Trials</a>
</div>
</div>
</div>
<div class="panel panel-sidebar">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion3" href="#collapse2">
<i class="fa fa-angle-right"></i> Cancer
</a>
</h4>
</div>
<div id="collapse2" class="panel-collapse collapse">
<div class="panel-body">
<a href="cancer-center.html"><i class="fa fa-angle-right"></i> Cancer Center</a>
<a href="cancer-center.html"><i class="fa fa-angle-right"></i> Cell Death Research</a>
<a href="cancer-center.html"><i class="fa fa-angle-right"></i> Brain Cancer</a>
<a href="cancer-center.html"><i class="fa fa-angle-right"></i> Tumor Microenvironment</a>
<a href="cancer-center.html"><i class="fa fa-angle-right"></i> Breast Cancer</a>
<a href="cancer-center.html"><i class="fa fa-angle-right"></i> Childhood Cancers</a>
<a href="cancer-center.html"><i class="fa fa-angle-right"></i> Endocrine Cancers</a>
<a href="cancer-center.html"><i class="fa fa-angle-right"></i> Skin Cancer</a>
<a href="cancer-center.html"><i class="fa fa-angle-right"></i> Male Cancers</a>
</div>
</div>
</div>
<div class="panel panel-sidebar">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion3" href="#collapse3">
<i class="fa fa-angle-right"></i> Children's Health
</a>
</h4>
</div>
<div id="collapse3" class="panel-collapse collapse">
<div class="panel-body">
<a href="children-health.html"><i class="fa fa-angle-right"></i> Genetic Disease</a>
<a href="children-health.html"><i class="fa fa-angle-right"></i> Growth & Development</a>
<a href="children-health.html"><i class="fa fa-angle-right"></i> Infections</a>
<a href="children-health.html"><i class="fa fa-angle-right"></i> Pregnancy & Baby</a>
<a href="children-health.html"><i class="fa fa-angle-right"></i> Nutrition & Fitness</a>
<a href="children-health.html"><i class="fa fa-angle-right"></i> Emotions & Behavior</a>
<a href="children-health.html"><i class="fa fa-angle-right"></i> Doctors & Hospitals</a>
<a href="children-health.html"><i class="fa fa-angle-right"></i> Muscle Development</a>
<a href="children-health.html"><i class="fa fa-angle-right"></i> RNA Biology</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-8">
<h2 class="light bordered">Medicom<span> Trials</span></h2>
<div class="height20"></div>
<div class="big-font">
<div class="media pull-right"><img src="images/cancer-canter-img2.jpg" class="img-rounded" alt="" title=""></div>
<p>Welcome to Medicom Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore that the power..</p>
<h4>Cancer Research Programs</h4>
<p>mo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium we Welcome to Medicom Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore.</p>
<div class="testimonials3 text-center">
<span class="fa fa-quote-left pull-left"></span>
<div class="owl-carousel text-carousel">
<div class="item">
<div class="testimonials3-content">
<h3>About the Cancer Center</h3>
<p><i>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Nam vitae felis fermentum.</i></p>
<p class="testimonials3-patient-detail"><span>- Garth Samosa, Ph.D.</span>Professor and Director, Cancer Center</p>
</div>
</div>
<div class="item">
<div class="testimonials3-content">
<h3>About the Cancer Center</h3>
<p><i>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Nam vitae felis fermentum.</i></p>
<p class="testimonials3-patient-detail"><span>- Garth Samosa, Ph.D.</span>Professor and Director, Cancer Center</p>
</div>
</div>
<div class="item">
<div class="testimonials3-content">
<h3>About the Cancer Center</h3>
<p><i>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Nam vitae felis fermentum.</i></p>
<p class="testimonials3-patient-detail"><span>- Garth Samosa, Ph.D.</span>Professor and Director, Cancer Center</p>
</div>
</div>
</div>
<span class="fa fa-quote-right pull-right"></span>
</div>
<div class="media pull-left"><img src="images/cancer-canter-img2.jpg" class="img-rounded" alt="" title=""></div>
<p>Ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore that the power.</p>
<p>veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Sed ut perspiciatis unde omnis iste natus error sit voluptatem Welcome to Medicom Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore.</p>
<h4>Technology supporting</h4>
<p>Welcome to Medicom Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore.</p>
<h4>Collaboration cancer center</h4>
<p>Welcome to Medicom Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore.</p>
<p>veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit sed quia consequuntur.</p>
<h4>cancer center faq’s</h4>
<div class="panel-group padding-top-20" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
<span><i class="fa fa-plus"></i></span>Outpatient Rehabilitation
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets. <br>It has survived not only five centuries, but also the but also the leap into electronic typesetting, remaining leap into electronic typesetting, remaining containing Lorem Aldus Page Maker including versions.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title active">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">
<span><i class="fa fa-plus fa-minus"></i></span>Dental Instruments
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse in">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets. <br>It has survived not only five centuries, but also the but also the leap into electronic typesetting, remaining leap into electronic typesetting, remaining containing Lorem Aldus Page Maker including versions.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseThree">
<span><i class="fa fa-plus"></i></span>Outpatient Rehabilitation
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets. <br>It has survived not only five centuries, but also the but also the leap into electronic typesetting, remaining leap into electronic typesetting, remaining containing Lorem Aldus Page Maker including versions.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseFour">
<span><i class="fa fa-plus"></i></span>Outpatient Surgery
</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets. <br>It has survived not only five centuries, but also the but also the leap into electronic typesetting, remaining leap into electronic typesetting, remaining containing Lorem Aldus Page Maker including versions.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseFive">
<span><i class="fa fa-plus"></i></span>Outpatient Rehabilitation
</a>
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse">
<div class="panel-body">
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets. <br>It has survived not only five centuries, but also the but also the leap into electronic typesetting, remaining leap into electronic typesetting, remaining containing Lorem Aldus Page Maker including versions.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!--end sub-page-content-->
<div class="colourfull-row"></div>
<!-- Footer
============================================= -->
<footer id="footer" class="light">
<div class="container">
<div class="row">
<div class="col-md-3">
<!-- Footer Widget
============================================= -->
<div class="footer-widget">
<h4><span>Medicom</span></h4>
<ul class="footer-nav list-unstyled clearfix">
<li><a href="#."><i class="fa fa-long-arrow-right"></i>Home</a></li>
<li><a href="#."><i class="fa fa-long-arrow-right"></i>Doctors</a></li>
<li><a href="#."><i class="fa fa-long-arrow-right"></i>About US</a></li>
<li><a href="#."><i class="fa fa-long-arrow-right"></i>Departments</a></li>
<li><a href="#."><i class="fa fa-long-arrow-right"></i>Services</a></li>
<li><a href="#."><i class="fa fa-long-arrow-right"></i>Blog</a></li>
<li><a href="#."><i class="fa fa-long-arrow-right"></i>Why US</a></li>
<li><a href="#."><i class="fa fa-long-arrow-right"></i>Medical Care</a></li>
<li><a href="#."><i class="fa fa-long-arrow-right"></i>Specilaties</a></li>
<li><a href="#."><i class="fa fa-long-arrow-right"></i>Timetable</a></li>
<li><a href="#."><i class="fa fa-long-arrow-right"></i>Events</a></li>
<li><a href="#."><i class="fa fa-long-arrow-right"></i>Contact Us</a></li>
</ul>
</div>
</div>
<div class="col-md-3">
<!-- Footer Widget
============================================= -->
<div class="footer-widget">
<h4><span>newsletter</span></h4>
<div class="newsletter clearfix">
<i class="fa fa-envelope"></i>
<p class="newsletter-text">Sign up with your name and email to
get updates fresh updates.</p>
<div class="success" id="message-news" style="display:none;">Thank you! You have successfully subscribed.</div>
<form name="newsletter_form" id="newsletter_form" method="post" action="submit.php" onSubmit="return false">
<input type="text" name="news_name" id="news_name" placeholder="Your Name" onKeyPress="removeChecks();">
<input type="email" name="news_email_address" id="news_email_address" placeholder="Email Address" onKeyPress="removeChecks();">
<input type="submit" value="subscribe" class="btn btn-default btn-rounded" onClick="validateNewsletter();">
</form>
</div>
</div>
</div>
<div class="col-md-3">
<!-- Footer Widget
============================================= -->
<div class="footer-widget">
<h4><span>Latest Tweets</span></h4>
<div class="twitter-widget">
<div class="tweet">
<i class="fa fa-twitter"></i>
<p><a href="#">@Rotography</a> Please kindly use our Support Forum: <a href="#.">pixelatic.co.uk.</a>
<span>about a month ago</span>
</p>
</div>
<div class="tweet">
<i class="fa fa-twitter"></i>
<p><a href="#">@Rotography</a> Please kindly use our Support Forum: <a href="#.">pixelatic.co.uk.</a>
<span>about a month ago</span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<!-- Footer Widget
============================================= -->
<div class="footer-widget">
<h4><span>get in touch</span></h4>
<p>Medico Bibendum auctor, nisi elit consequat ipsum, nec sagittis sem</p>
<div class="contact-widget">
<i class="fa fa-home"></i><p>Medicom Ltd, Manhattan 1258, New York, USA Lahore</p>
<i class="fa fa-globe"></i><p><a href="#.">www.medicom.com</a></p>
<i class="fa fa-mobile"></i><p class="phone-number">(+1) 234 567 8901</p>
</div>
<ul class="social3 clearfix">
<li><a href="#."><i class="fa fa-facebook"></i></a></li>
<li><a href="#."><i class="fa fa-twitter"></i></a></li>
<li><a href="#."><i class="fa fa-google-plus"></i></a></li>
<li><a href="#."><i class="fa fa-skype"></i></a></li>
<li><a href="#."><i class="fa fa-youtube"></i></a></li>
<li><a href="#."><i class="fa fa-dribbble"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Copyright
============================================= -->
<p class="copyright text-center">Copyright © 2014 Medicom. All right reserved.</p>
<!-- Footer Bottom
============================================= -->
<div class="container">
<div class="row">
<div class="col-md-2"><a href="#."><img src="images/footer-logo.jpg" alt="" title="Medicom Logo"></a></div>
<div class="col-md-10">
<p class="footer-bottom-text">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing.</p>
</div>
</div>
</div>
</footer>
<!-- back to top -->
<a href="#." class="back-to-top" id="back-to-top"><i class="fa fa-angle-up"></i></a>
</div><!--end #wrapper-->
<!-- All Javascript
============================================= -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.stellar.js"></script>
<script src="js/jquery-ui-1.10.3.custom.js"></script>
<script src="js/owl.carousel.js"></script>
<script src="js/counter.js"></script>
<script src="js/waypoints.js"></script>
<script src="js/jquery.uniform.js"></script>
<script src="js/easyResponsiveTabs.js"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/jquery.fancybox-media.js"></script>
<script src="js/jquery.mixitup.js"></script>
<script src="js/forms-validation.js"></script>
<script src="js/jquery.jcarousel.min.js"></script>
<script src="js/jquery.easypiechart.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>