-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
167 lines (115 loc) · 4.77 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>UD Accounting</title>
<!--Bootstrap and Javascript CDN-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor"
crossorigin="anonymous">
<!--Javascript CDN---->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
<!--Link for Custom CSS and Fonts---->
<link rel="stylesheet" href="css/universal-styles.css">
<link rel="stylesheet" href="css/home-styles.css">
<link href="https://fonts.cdnfonts.com/css/palatino-linotype"
rel="stylesheet">
</head>
<!--BODY BEGINS HERE-->
<body>
<!--Logo Display-->
<section id="LogoContainer">
<a class="logo-link" href="index.html"><img class="logo-link-image"
src="resources/UDA Link Logo.png"></a>
</section>
<!--Navbar-->
<nav class="navbar navbar-expand-lg fixed-top custom-navbar-class">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarTogglerDemo02"
aria-controls="navbarTogglerDemo02" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav mx-auto">
<li class="navbar-item mx-auto">
<a class="menu-link" href="index.html">Home</a>
</li>
<li class="navbar-item mx-auto">
<a class="menu-link" href="about.html">About</a>
</li>
<li class="navbar-item mx-auto">
<a class="menu-link" href="our-services.html">Our Services</a>
</li>
<li class="navbar-item mx-auto">
<a class="menu-link" href="tax-tips.html">Tax Tips</a>
</li>
<li class="navbar-item mx-auto">
<a class="menu-link" href="worksheets.html">Worksheets</a>
</li>
<li class="navbar-item mx-auto">
<a class="menu-link" href="contact-us.html">Contact Us</a>
</li>
</ul>
</div>
</nav><!---Closing Navbar Tag--->
<!--Slideshow-->
<section id="slideshowContainer">
<!--Carousel With Controls-->
<div id="FeaturesSlideshow" class="carousel slide"
data-bs-ride="false">
<div class="carousel-inner">
<div class=" carousel-item active container-fluid">
<img class="slide-image"
src="resources/slideshow images/Slideshow Image 1.jpg"
alt="feature-image">
<h2 class="feature-text">Accounting, Tax and Business Solutions.
Your accounting needs – simplified.
</h2>
</div>
<div class="carousel-item container-fluid">
<img class="slide-image"
src="resources/slideshow images/Slideshow Image 2.jpg"
alt="feature-image">
<h2 class="feature-text">Taking care of your tax returns with
efficiency and affordability. </h2>
</div>
<div class="carousel-item container-fluid">
<img class="slide-image"
src="resources/slideshow images/Slideshow Image 3.jpg"
alt="feature-image">
<h2 class="feature-text">
Let us take care of your bookkeeping so you don’t have to.
</div>
</div>
<!-- Carousel Controls -->
<button class="carousel-control-prev"
href="#FeaturesSlideshow"
role="button" data-bs-slide="prev">
<span class="sr-only previous-control-text">Previous</span>
</button>
<button class="carousel-control-next" href="#FeaturesSlideshow"
role="button" data-bs-slide="next">
<span class="sr-only next-control-text">Next</span>
</button>
</div>
</div>
</section>
<!---Contact Information--->>
</body>
<footer id="contactInfo">
<h2 class="contact-detail">CEO: Ubayd Deen</h2>
<h2 class="contact-detail">Email: <a class="contact-link"
href="mailto:admin@ud-acounting.ca">admin@ud-accounting.ca</a></h2>
<h2 class="contact-detail">Phone: <a class="contact-link"
href="tel:647-606-4183">647-606-4183</a></h2>
<p id="copyrightInfo">© Copyright 2023 UD Accounting</p>
</footer>
</html>