-
Notifications
You must be signed in to change notification settings - Fork 0
/
doctors.html
53 lines (48 loc) · 2.18 KB
/
doctors.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Doctor Directory</title>
<link rel="stylesheet" href="css/style.css">
</head>
<style>
body{
width:100%;
height: 100vh;
background-image: url("doctor.jpg");
background-repeat: no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
}
</style>
<body>
<main>
<h1 style="margin-left: 450px; font-size:60px;font-weight: bolder;color: rgb(110, 41, 41);">Find a Doctor</h1><br><br>
<form>
<label for="specialty" style="margin-left: 100px;font-size: 20px;">Specialty:</label>
<select id="specialty" name="specialty" style="font-size: 15px;">
<option value="general">General Practitioner</option>
<option value="pediatrician">Pediatrician</option>
<option value="cardiologist">Cardiologist</option>
</select><br><br><br>
<label for="location" style="margin-left: 100px;font-size: 20px;">Location:</label>
<input type="text" id="location" name="location" required>
<br><br>
<button type="submit" style="margin-left: 100px;font-size: 17px;">Search</button>
</form>
<div id="doctor-list">
<!-- List of doctors will be displayed here -->
</div>
</main>
<br><br><br>
<footer>
<h2 style="margin-left: 100px;font-size: 40px;color: rgb(48, 10, 10);">Contact Us</h2>
<p style="margin-left: 100px; font-size:20px ;">Email: [email protected]</p>
<p style="margin-left: 100px; font-size: 20px;">Phone: +123 456 7890</p>
<div class="goback" style="margin-top: 30px; margin-left: 500px;color: black; font-weight: bolder;"><a href="./project.html" style="text-decoration: none;color: rgb(11, 11, 11);height: 100%;"><button style="width: 135px;height: 8%;padding: 0%;">Back to dashboard</a></button></div>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>