-
Notifications
You must be signed in to change notification settings - Fork 0
/
singlebio4.html
168 lines (127 loc) · 5.39 KB
/
singlebio4.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!--
Emily Hartz-Kuzmicz
job346
11350337
CMPT281
-->
<!DOCTYPE html>
<html>
<head>
<title>2nd Avenue Dental</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Links the CSS stylesheet to the HTML doc -->
<link rel="stylesheet" type="text/css" href="STYLES/mainstylesheet.css" />
<link rel="stylesheet" type="text/css" href="STYLES/singlestylesheet.css" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@700;800&family=Spectral:wght@300;500&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="Logo">
<img src="ICONS/sitelogo.png" alt="website icon">
<h1>2ndAveDental</h1>
</div>
<ul class="NavList">
<li><a href="home.html" class="NavListItem"><h5>Home</h5></a></li>
<li><a href="aboutus.html" class="NavListItem"><h5>About</h5></a></li>
<li><a href="services.html" class="NavListItem"><h5>Services</h5></a></li>
<li><a href="contact.html" class="NavListItem"><h5>Contact Us</h5></a></li>
<li id="LargerNavItem"><a href="booking.html" class="NavListItem" id="NavReqAppt"><h5>Request Appointment</h5></a></li>
</ul>
</nav>
<div class="BioBox">
<div class="BioImage">
<img src="IMAGES/ABOUT IMAGES/dentist4.jpg" alt="old male dentist studies at his desk">
</div>
<div class="BioText">
<h1>Dr. John Doe</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
<div class="ApptRequestBar">
<h2>Write a bunch of words here!</h2>
<a href="booking.html"><button type="button" class="ReqApptButton"><h3>Request Appointment</h3></button></a>
</div>
<div class="FooterBox">
<div class="InfoBox">
<div class="Info">
<div class="InfoIconExtraSpace">
<img id="LocationIcon" src="ICONS/locationpin.png" alt="location pin icon">
<div class="InfoText">
<h5>123 & 45 Example Avenue, Saskatoon, SK, SJS 123</h5>
</div>
</div>
<div class="InfoIcon">
<img id="FooterPhoneIcon" src="ICONS/phonecircle.png" alt="phone icon">
<div class="InfoText">
<ul>
<h5>Call Us</h5>
<h5><b>306-123-4567</b></h5>
</ul>
</div>
</div>
<div class="InfoIcon">
<img id="EmailIcon" src="ICONS/email.png" alt="email icon">
<div class="InfoText">
<ul>
<h5>Email Us</h5>
<h5><b>[email protected]</b></h5>
</ul>
</div>
</div>
</div>
<div class="SocialLinks">
<a href="https://www.facebook.com">
<img id="FBIcon" src="ICONS/facebook.png" alt="facebook icon">
</a>
<a href="https://www.instagram.com">
<img id="INSIcon" src="ICONS/instagram.png" alt="instagram icon">
</a>
<a href="https://www.twitter.com">
<img id="TWTIcon" src="ICONS/twitter.png" alt="twitter icon">
</a>
</div>
</div>
<div class="OfficeHoursBox">
<h2><b>Office Hours</b></h2>
<div class="HoursBox">
<div>
<h5><b>Monday</b></h5>
<p>9:00am - 5:00pm</p>
</div>
<div>
<h5><b>Tuesday</b></h5>
<p>9:00am - 5:00pm</p>
</div>
<div>
<h5><b>Wednesday</b></h5>
<p>9:00am - 5:00pm</p>
</div>
<div>
<h5><b>Thursday</b></h5>
<p>9:00am - 5:00pm</p>
</div>
<div>
<h5><b>Friday</b></h5>
<p>9:00am - 5:00pm</p>
</div>
<div>
<h5><b>Saturday</b></h5>
<p>Closed</p>
</div>
<div>
<h5><b>Sunday</b></h5>
<p>Closed</p>
</div>
<div>
<h5><b>Holidays</b></h5>
<p>Closed</p>
</div>
</div>
</div>
</div>
</body>
</html>