-
Notifications
You must be signed in to change notification settings - Fork 0
/
Appointment.html
47 lines (43 loc) · 1.25 KB
/
Appointment.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
<!DOCTYPE html>
<html>
<head>
<title>DIGICURE - Book Appointment</title>
<link rel="stylesheet" type="text/css" href="AppointmentStyle.css"/>
</head>
<body>
<div class="topnav">
<img src="imgs/1.jpg" align="left" width="120" >
<a href="Emergency.html" align="center"><font size="6">Book Emergency</font></a>
<a href="Remedies.html" align="center"><font size="6">Home Remedies</font></a>
<a href="Doctors.html" align="center"><font size="6">Find doctor</font></a>
<a class="active" href="index.html" align="center"><font size="6">Home </font></a>
</div>
<center>
<form class="book">
<h2 class="heading">Booking Appointment Form</h2>
<table>
<tr>
<td><p>Name</p></td>
<td><input type="text"/></td>
</tr>
<tr>
<td><p>Age</p></td>
<td><input type="text"/></td>
</tr>
<tr>
<td><p>Select Date for Appointment</p></td>
<td><input type="date"/></td>
</tr>
<tr>
<td><p>Select Time</p></td>
<td><input type="time"/></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Book Appointment"/></td>
</tr>
</table>
</form>
</center>
</body>
</html>