-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdoctor.html
84 lines (62 loc) · 2.14 KB
/
doctor.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" type="image/png" href="assets/images/favicon.png" />
<title>Medicus | Doctor</title>
<!-- MAIN STYLESHEET -->
<link rel="stylesheet" href="./assets/css/main.css">
<!-- SUB STYLESHEET -->
<link rel="stylesheet" href="./assets/css/doctor.css">
<!-- ICON CDN -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<header>
<a href="./index.html"><img src="./assets/images/icon.png" alt="icon"></a>
</header>
<div class="sub-header">
</div>
<div class="background">
<div class="container">
<div class="img-box">
<img src="./assets/images/person-placeholder.png" alt="person">
</div>
<div class="details-box">
<div class="name">
<h1>Jack Sparrow</h1>
<p>Male</p>
</div>
<div class="job">
<div class="rating">
☆☆☆☆
</div>
<h3>Ortho</h3>
<a href="./hospital.html">
<p>Hospital 1</p>
</a>
</div>
</div>
<div class="review-box">
<div class="review">
<p class="content">"Nice Doctor"</p>
<p class="reviewer">- Saul</p>
</div>
<div class="review">
<p class="content">"Awesome Doctor" </p>
<p class="reviewer">- John</p>
</div>
</div>
</div>
</div>
<footer>
<div class="footer-content">
<p>Made with <span style="color:white;">♥</span> by <span
style="background-color: rgb(47, 47, 131);">Runtime
Terror</span></p>
</div>
</footer>
</div>
</body>
</html>