-
Notifications
You must be signed in to change notification settings - Fork 0
/
doctor.html
62 lines (58 loc) · 2.32 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
<!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>Document</title>
<style>
body{
background-color: #FFFFFF;
}
button{
background-color: #DDDDDD;
color: balck;
margin: 10px;
margin-top: 10px;
border: transparent;
border-radius: 5px;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
}
#downl{
background-color: #FF8c32;
}
hr{
border: solid;
height: 0px;
border-color:cadetblue;
}
.content{
padding-left: 20%;
padding-right: 20%;
}
</style>
<script>
function take(){
window.location.replace = 'response.html';
}
</script>
</head>
<body>
<h1>List of Doctors</h1>
<div class="content">
<!-- <a href="/response"> <button class="btn btn-default">Download</button></a> -->
Name-<a href="/response"><button type="submit" onclick="take()">Dr. Nandi</button></a> Speciality- Dietician<br><hr><br>
Name-<a href="/response"><button type="submit" onclick="take()">Dr. Damania</button></a> Speciality- Nutrician<br><hr><br>
Name-<a href="/response"><button type="submit" onclick="take()">Dr. Damania</button></a> Speciality- Nutrician<br><hr><br>
Name-<a href="/response"><button type="submit" onclick="take()">Dr. Prabhakar</button> </a>Speciality- Nutrician<br><hr><br>
Name-<a href="/response"><button type="submit" onclick="take()">Dr. Rautela</button> </a>Speciality- Dietician<br><hr><br>
Name-<a href="/response"><button type="submit" onclick="take()">Dr. Crust</button> </a>Speciality- Nutrician<br><hr><br>
Name-<a href="/response"><button type="submit" onclick="take()">Dr. Polygon</button> </a>Speciality- Dietician<br><hr><br>
Name-<a href="/response"><button type="submit" onclick="take()">Dr. Ok</button> </a>Speciality- Nutrician<br><hr><br>
Name-<a href="/response"><button type="submit" onclick="take()">Dr. No</button></a> Speciality- Dietician<br><hr><br>
</div>
</body>
</html>