-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 2.6 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Dental Studio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<h1>The Dental Studio.</h1>
<ul>
<li><a href="#">About us</a></li>
<li><a href="#">Procedures</a></li>
<li><a href="#">Our doctors</a></li>
</ul>
</div>
<div class="introduction">
<div>
<h2>Trusted Dental <br>Destination</h2>
<p class="hero">A smile truly transforms our visual appearance, the positivity of our mind-
set, as well as improves the health of both our mouth and body. A smile is worth a thousand words.
<br>Smile bright with us. </p>
<button class="book-apt1">Book an appointment</button>
</div>
<img class= "happy-smile" height="200px" width="auto" src="img/teeth-color-guide.jpg" alt="happy smile">
</div>
<div class="more-info">
<h3>Core Services</h3>
<div class="services-tiles">
<div class="info">
<img src="img/root-canal-treatment.jpg" alt="root canal">
<p class="text">Root Canal Therapy</p>
</div>
<div class="info">
<img src="img/dntl-implant.jpg" alt="dental implants">
<p class="text">Dental Implants</p>
</div>
<div class="info">
<img src="img/ortho.jpg" alt="orthodontics">
<p class="text">Orthodontics</p>
</div>
<div class="info">
<img src="img/oral-surgery.jpg" alt="oral surgery">
<p class="text">Oral Surgery</p>
</div>
</div>
</div>
<div class="customer-reviews">
<p>Very welcoming and friendly. The dentists are experienced and understanding. Patient aftercare and follow up is remarkable. They provide an exceptional service and I will be coming here for all my future dental needs!</p>
<p class="cust-name">-Brianna Wilson</p>
</div>
<div class="schedule-apt">
<div>
<h5>Have any dental concerns?</h5>
<p>Come schedule an appointment with us and connect with us</p>
</div>
<button class="book-apt2">Book now</button>
</div>
<div class="footer">
<p>Copyright © The Dental Studio 2024</p>
</div>
</body>
</html>