-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.html
121 lines (111 loc) · 6.13 KB
/
aboutus.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
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
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RCT - Aarthy's Dentistry</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<h1>Aarthy's Dentistry</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li>
<a href="#services">Services</a>
<ul class="dropdown">
<li><a href="fillings.html">Fillings</a></li>
<li><a href="braces.html">Braces</a></li>
<li><a href="rct.html">RCT</a></li>
</ul>
</li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<main id="about-main">
<section class="about-hero">
</section>
<h2>About Us</h2>
<p>Welcome to Aarthy's Dentistry, your premier dental clinic located in Chennai, Tamil Nadu. At Aarthy's Dentistry, we believe that everyone deserves a healthy, beautiful smile. Our mission is to provide high-quality dental care in a warm and welcoming environment, ensuring that your visit is as comfortable as possible.</p>
<h2>Our Team</h2>
<p>Led by Dr. Aarthy Rajasekaran, our experienced team of dental professionals is dedicated to delivering personalized care tailored to your unique needs. We stay updated on the latest advancements in dentistry to provide our patients with the best treatment options available. Our friendly staff is here to guide you through every step of your dental journey.</p>
<h2>Our Services</h2>
<p>We offer a comprehensive range of dental services, including:</p>
<ul>
<li><strong>General Dentistry</strong>: Routine check-ups, cleanings, and preventive care to keep your smile healthy.</li>
<li><strong>Cosmetic Dentistry</strong>: Teeth whitening, veneers, and smile makeovers to enhance your smile's appearance.</li>
<li><strong>Restorative Dentistry</strong>: Fillings, crowns, and bridges to restore function and aesthetics to damaged teeth.</li>
<li><strong>Orthodontics</strong>: Braces and clear aligners to straighten your teeth and improve your bite.</li>
<li><strong>Root Canal Therapy</strong>: Gentle treatment to save infected teeth and relieve pain.</li>
</ul>
<h2>Why Choose Us?</h2>
<p>At Aarthy's Dentistry, patient satisfaction is our top priority. We strive to create a comfortable and friendly atmosphere where you can feel at ease. Our clinic is equipped with state-of-the-art technology, ensuring that you receive the highest standard of dental care. We take the time to listen to your concerns and work with you to develop a treatment plan that meets your goals.</p>
<h2>Schedule Your Appointment</h2>
<p id="p-bottom">Experience the difference at Aarthy's Dentistry. Whether you're looking for routine dental care or a complete smile transformation, our team is here to help. Contact us today at <strong>+91 8939 299 288</strong> or visit our website at <a href="http://aarthysdentistry.in">aarthysdentistry.in</a> to schedule your appointment.</p>
</main>
<footer id="contact">
<div class="footer-container">
<!-- First Row -->
<div class="footer-row">
<!-- Contact Section -->
<div class="footer-section contact">
<h3>Contact</h3>
<p>
Address: 1/1, R.K.R Nagar, 1st Main Rd, Poompuhar Nagar, Chennai,
Tamil Nadu 600099
</p>
<p>Phone: +91 8939 299 288</p>
<p>
Email:
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<!-- Quick Links Section -->
<div class="footer-section quick-links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="contact.html">Find Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
<!-- Second Row -->
<div class="footer-row">
<!-- Timings Section -->
<div class="footer-section timings">
<h3>Timings</h3>
<p>Mon - Fri: 9:00 AM - 7:00 PM</p>
<p>Sat: 10:00 AM - 5:00 PM</p>
<p>Sun: Closed</p>
</div>
<!-- Follow Us Section -->
<div class="footer-section social-icons">
<h3>Follow Us</h3>
<div class="social-icons-inner">
<a href="https://www.facebook.com/profile.php?id=61565575555432" target="_blank" class="social-icon"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com" target="_blank" class="social-icon"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/aarthys_dentistry/" target="_blank" class="social-icon"><i class="fab fa-instagram"></i></a>
<a href="https://linkedin.com" target="_blank" class="social-icon"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
<p class="footer-copyright">
© 2024 Aarthy's Dentistry. All rights reserved.
</p>
</footer>
</body>
</html>