-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
70 lines (53 loc) · 1.56 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DocConnect360 by VirtualVitals | Find a Doctor, Order Medicine</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.png">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/slideshow.css">
</head>
<?php
include_once "header.php"
?>
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="assets/sld1.jpg" style="width:100%">
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="assets/sld2.jpg" style="width:100%">
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="assets/sld3.jpeg" style="width:100%">
</div>
</div>
<br>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<div class="main-container">
<div class="banner-txt">DocConnect360 is Sri Lanka's Largest eChannelling Platform</div>
<div class="booking">
<a href="login_form.php">
<button>BOOK AN APPOINTMENT</button>
</a>
<a href="searchdoctor.php">
<button>SEARCH A DOCTOR</button>
</a>
<a href="placeOrder.php">
<button>ORDER MEDICINE</button>
</a>
</div>
</div>
<body>
<script src="js/slideshow.js"></script>
</body>
</html>
<?php
include_once "footer.php"
?>