-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAppointment.html
More file actions
36 lines (33 loc) · 1.41 KB
/
Copy pathAppointment.html
File metadata and controls
36 lines (33 loc) · 1.41 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Book Appointment</title>
<link rel="stylesheet" href="appointmentstyle.css">
<script>
function sub(){document.write("Your appointment has been booked.!");}
</script>
</head>
<body>
<a class="home" href="index.html">Home</a>
<div class="form">
<form class="appointment">
<h1>BOOK APPOINTMENT :</h1>
<div class="a">Patient Name:<input type="text" placeholder="Patient Name"><br></div>
<div class="a">
Gender : <input type="radio" value="M">Male
<input type="radio" value="F">Female
<input type="radio" value="F">Others
</div>
<div class="a">Contact No. : <input type="number" placeholder="10 digit number"><br></div>
<div class="a"> E-mail : <input type="Email" placeholder="@gmai.com"><br></div>
<div class="a"> Date of Birth: <input type="date" placeholder="DD/MM/YY"><br></div>
<div class="a">Date of Appointment: <input type="Date" placeholder="DD/mm/yy"><br></div>
<div class="a">Prefered Time: <input type="Time" placeholder="time"><br></div>
<div class="a">Department : <input type="text" placeholder="eg. Cardiology" ><br></div>
<input class="btn" type="button" value="Submit" onclick="sub()">
</form>
</table>
</div>
</body>
</html>