-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgynecology.html
More file actions
119 lines (114 loc) · 4.42 KB
/
gynecology.html
File metadata and controls
119 lines (114 loc) · 4.42 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Top Gynecologists in India</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #ff4d4d;
color: #fff;
padding: 1rem 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
.container {
max-width: 1200px;
margin: 2rem auto;
padding: 1rem;
}
.gynecologist {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
margin-bottom: 1.5rem;
padding: 1.5rem;
}
.gynecologist h2 {
margin-top: 0;
color: #ff4d4d;
}
.gynecologist p {
margin: 0.5rem 0;
}
.contact-btn {
display: inline-block;
margin-top: 1rem;
padding: 0.5rem 1rem;
background-color: #ff4d4d;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.contact-btn:hover {
background-color: #cc0000;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<div id="two">
<header>
<h1>Top Gynecologists in India</h1>
<p>Discover the best gynecologists, their affiliated hospitals, and contact details</p>
</header>
<div class="container">
<!-- Gynecologist 1 -->
<div class="gynecologist">
<h2>Dr. Sunita Sharma</h2>
<p><strong>Hospital:</strong> AIIMS, New Delhi</p>
<p><strong>Specialization:</strong> High-Risk Pregnancy, Menstrual Disorders</p>
<p><strong>Contact:</strong> +91 9876543210 | <a href="mailto:sunita.sharma@aiims.edu">sunita.sharma@aiims.edu</a></p>
<a href="https://www.aiims.edu/" target="_blank" class="contact-btn">Visit Hospital Website</a>
</div>
<!-- Gynecologist 2 -->
<div class="gynecologist">
<h2>Dr. Meera Gupta</h2>
<p><strong>Hospital:</strong> Fortis Hospital, Mumbai</p>
<p><strong>Specialization:</strong> Fertility Treatment, PCOS Management</p>
<p><strong>Contact:</strong> +91 9123456780 | <a href="mailto:meera.gupta@fortis.com">meera.gupta@fortis.com</a></p>
<a href="https://www.fortishealthcare.com/" target="_blank" class="contact-btn">Visit Hospital Website</a>
</div>
<!-- Gynecologist 3 -->
<div class="gynecologist">
<h2>Dr. Anjali Verma</h2>
<p><strong>Hospital:</strong> Apollo Hospitals, Chennai</p>
<p><strong>Specialization:</strong> Laparoscopic Surgery, Uterine Fibroids</p>
<p><strong>Contact:</strong> +91 8765432109 | <a href="mailto:anjali.verma@apollohospitals.com">anjali.verma@apollohospitals.com</a></p>
<a href="https://www.apollohospitals.com/" target="_blank" class="contact-btn">Visit Hospital Website</a>
</div>
<!-- Gynecologist 4 -->
<div class="gynecologist">
<h2>Dr. Kavita Reddy</h2>
<p><strong>Hospital:</strong> NIMHANS, Bangalore</p>
<p><strong>Specialization:</strong> Adolescent Gynecology, Endometriosis</p>
<p><strong>Contact:</strong> +91 9012345678 | <a href="mailto:kavita.reddy@nimhans.ac.in">kavita.reddy@nimhans.ac.in</a></p>
<a href="https://nimhans.ac.in/" target="_blank" class="contact-btn">Visit Hospital Website</a>
</div>
</div>
<footer>
<p>© 2024 Gynecology India. All Rights Reserved.</p>
</footer>
</div>
</body>
</html>