-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoctor.html
79 lines (71 loc) · 2.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body{
background-image: url('doctorbg.jpg');
/* background-color:rgb(124, 194, 191); */
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100 100%;
background-position: right;
}</style>
<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>Doctor</title>
</head>
<body><font size="5px" family="comic sans MS" color="">
<center> <h1>Nearby Hospitals Details</h1></center>
<ul>
<li>
<h3>Hospital 1</h3>
<p>Contact: <a href="tel:1234567890">123-456-7890</a></p>
<p>Video Call: <a href="https://video-call-service.com/hospital1">Click here</a></p>
<p>Voice Call: <a href="tel:1234567890">123-456-7890</a></p>
<!-- <form> -->
<!-- <label for="doctor-hospital1">Doctor's Name:</label> -->
<!-- <input type="text" id="doctor-hospital1" name="doctor-hospital1"> -->
<!-- </form> -->
</li>
<li>
<h3>Hospital 2</h3>
<p>Contact: <a href="tel:9876543210">987-654-3210</a></p>
<p>Video Call: <a href="https://video-call-service.com/hospital2">Click here</a></p>
<p>Voice Call: <a href="tel:9876543210">987-654-3210</a></p>
<!-- <form> -->
<!-- <label for="doctor-hospital2">Doctor's Name:</label> -->
<!-- <input type="text" id="doctor-hospital2" name="doctor-hospital2"> -->
<!-- </form> -->
</li>
<li>
<h3>Hospital 3</h3>
<p>Contact: <a href="tel:5555555555">555-555-5555</a></p>
<p>Video Call: <a href="https://video-call-service.com/hospital3">Click here</a></p>
<p>Voice Call: <a href="tel:5555555555">555-555-5555</a></p>
<!-- <form> -->
<!-- <label for="doctor-hospital3">Doctor's Name:</label> -->
<!-- <input type="text" id="doctor-hospital3" name="doctor-hospital3"> -->
<!-- </form> -->
</li>
</ul>
<center><h1>Book Your Appoinment</h1></center>
<h2>Personal Information</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br><br>
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" required><br><br>
<label for="address">Address:</label>
<textarea id="address" name="address" required></textarea><br><br>
<h3>Doctor's Information</h3>
<label for="doctor-name">Doctor's Name:</label>
<input type="text" id="doctor-name" name="doctor-name"><br><br>
<label for="doctor-specialization">Specialization:</label>
<input type="text" id="doctor-specialization" name="doctor-specialization"><br><br>
<!-- <label for="doctor-contact">Contact:</label> -->
<!-- <input type="tel" id="doctor-contact" name="doctor-contact"><br><br> -->
<input type="submit" value="Submit">
</form>
</body>
</html>