-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmedical.html
More file actions
101 lines (91 loc) · 3.69 KB
/
medical.html
File metadata and controls
101 lines (91 loc) · 3.69 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Medical Store</title>
</head>
<body>
<link rel="stylesheet" type="text/css" href="css/style.css">
<ul>
<li>
<a href="#">
<span class="span-logo">
<img src="image/index.png" id="hos1">
</span>
</a>
</li>
<li><a class="active" href="index.html">Home</a></li>
<li class="left"><a href="vedorlogin.html">Login</a></li>
<li class="left"><a href="vendorregister.html">Register</a></li>
</ul>
<!-- Latest compiled and minified CSS & JS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="//code.jquery.com/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<div class="page-header">
<h1 id="medhead">Medical Store For Vendors<br><small>Please Login or Register to Submit your quotation</small></h1>
</div>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Carousel indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for carousel items -->
<div class="carousel-inner">
<div class="item active">
<img src="image/medslide1.jpg" alt="First Slide">
<h1>Quote1</h1>
<p>The good physician treats the disease; the great physician treats the patient who has the disease.</p>
</div>
<div class="item">
<img src="image/medslide2.jpg" alt="Second Slide">
<h1>Quote2</h1>
<p>The greatest evil is physical pain</p>
</div>
<div class="item">
<img src="image/medslide3.jpg" alt="Third Slide">
<h1>Quote3</h1>
<p>Medicine Saves Lifes</p>
</div>
<div class="item">
<img src="image/medslide4.jpg" alt="Fourth Slide">
<h1>Quote4</h1>
<p>Medicine can save a dying man</p>
</div>
<div class="item">
<img src="image/medslide5.jpg" alt="Fifth Slide">
<h1>Quote5</h1>
<p>No Pain no gain medicine saves you from that pain</p>
</div>
<div class="item">
<img src="image/medslide6.jpg" alt="Sixth Slide">
<h1>Quote6</h1>
<p>If Doctors are Magicians then Medicine is doctors Tools of Magic</p>
</div>
</div>
<!-- Carousel controls -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<!-- Add font awesome icons -->
<footer>
<div class="footer-social-icons">
<h4 class="_14">Follow us on</h4>
<ul class="social-icons">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<a href="www.facebook.com" class="fa fa-facebook"></a>
<a href="www.twitter.com" class="fa fa-twitter"></a>
<a href="www.google.com" class="fa fa-google"></a>
<a href="www.linkedin.com" class="fa fa-linkedin"></a>
<a href="www.youtube.com" class="fa fa-youtube"></a>
<a href="www.instagram.com" class="fa fa-instagram"></a>
</ul>
</div>
</footer>
</body>
</html>