-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
77 lines (66 loc) · 2.29 KB
/
services.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
<!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>Medcare</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section class="doctors">
<div class="section">
<h2 class="text-center">Doctors</h2>
<div class="box-3 float-section">
<a href="ortho.html">
<img src="images/ortho.jpg" alt="bones" class="img-responsive img-curve">
</a>
<h3 class="float-text text-white">OrthoPedic</h3>
</div>
<div class="box-3 float-section">
<a href="dermo.html">
<img src="images/dermo.jpg" alt="skin" class="img-responsive img-curve">
</a>
<h3 class="float-text text-white">Dermotologist</h3>
</div>
<div class="box-3 float-section">
<a href="cardio.html">
<img src="images/cardio.jpg" alt="heart" class="img-responsive img-curve">
</a>
<h3 class="float-text text-white">Cardioligist</h3>
</div>
<div class="clearfix"></div>
</div>
</section>
</body>
</html>
<!-- <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Doctor Cards</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="card" onclick="window.location.href='ortho.html'">
<div class="card-image">
<img src="images/ortho.jpg" alt="Doctor 1">
</div>
<h3>Doctor 1</h3>
</div>
<div class="card" onclick="window.location.href='dermo.html'">
<div class="card-image">
<img src="images/dermo.jpg" alt="Doctor 2">
</div>
<h3>Doctor 2</h3>
</div>
<div class="card" onclick="window.location.href='cardio.html'">
<div class="card-image">
<img src="images/cardio.jpg" alt="Doctor 3">
</div>
<h3>Doctor 3</h3>
</div>
</div>
</body>
</html>-->