-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
271 lines (239 loc) · 14.1 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<!DOCTYPE html>
<html lang="en">
<head>
<title>Simple Sum</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {font-family: "Lato", sans-serif}
.mySlides {display: none}
</style>
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-white w3-card">
<a class="w3-bar-item w3-button w3-padding-large w3-hide-medium w3-hide-large w3-right" href="javascript:void(0)" onclick="myFunction()" title="Toggle Navigation Menu"><i class="fa fa-bars"></i></a>
<a href="#" class="w3-bar-item w3-padding-large">
<img src="Images/simple_sum.svg" alt="Website Logo" style="height: 50px; width: auto;">
</a>
<a href="#overview" class="w3-bar-item w3-button w3-padding-large w3-hide-small">OVERVIEW</a>
<a href="#about" class="w3-bar-item w3-button w3-padding-large w3-hide-small">ABOUT US</a>
<a href="#services" class="w3-bar-item w3-button w3-padding-large w3-hide-small">OUR SERVICES</a>
<a href="#contact" class="w3-bar-item w3-button w3-padding-large w3-hide-small">CONTACT</a>
</div>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium w3-top" style="margin-top:73px">
<a href="#overview" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">OVERVIEW</a>
<a href="#about" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">ABOUT US</a>
<a href="#services" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">OUR SERVICES</a>
<a href="#contact" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">CONTACT</a>
</div>
<!-- Page content -->
<div class="w3-content" style="max-width:2000px;margin-top:46px">
<!-- Automatic Slideshow Images -->
<!-- Slide 1 -->
<div class="mySlides w3-display-container">
<img src="Images/thames-541456_1920.jpg" style="width:100%; max-height: 1000px;">
<div class="w3-display-right w3-container" style="text-align: right;">
<div style="background-color: #fff; padding: 5px; margin-bottom: 5px;">
<h2 style="color: #162347; margin: 0; font-size: 28px;">Accounting, Bookkeeping and Taxation Services</h2>
</div>
<div style="display: flex; flex-direction: column; align-items: flex-end;">
<div style="background-color: #bcd4e6; padding: 5px; margin-bottom: 5px; width: 400px;">
<p style="color: #162347; margin: 0; font-size: 18px; text-align: right;">SIMPLE SUM IN LONDON </p>
</div>
<a href="#contact" style="text-decoration: none;">
<div style="background-color: #bcd4e6; padding: 5px; width: 200px; text-align: center;">
<p style="color: #162347; margin: 0; font-size: 18px;">Contact us</p>
</div>
</a>
</div>
</div>
</div>
<!-- Slide 2 -->
<div class="mySlides w3-display-container">
<img src="Images/man-5806012_1920.jpg" style="width:100%; max-height: 1000px;">
<div class="w3-display-right w3-container" style="text-align: right;">
<div style="background-color: #fff; padding: 5px; margin-bottom: 5px;">
<h2 style="color: #162347; margin: 0; font-size: 28px;">Accounting, Bookkeeping and Taxation Services</h2>
</div>
<div style="display: flex; flex-direction: column; align-items: flex-end;">
<div style="background-color: #bcd4e6; padding: 5px; margin-bottom: 5px; width: 400px;">
<p style="color: #162347; margin: 0; font-size: 18px; text-align: right;">SIMPLE SUM IN LONDON </p>
</div>
<a href="#contact" style="text-decoration: none;">
<div style="background-color: #bcd4e6; padding: 5px; width: 200px; text-align: center;">
<p style="color: #162347; margin: 0; font-size: 18px;">Contact us</p>
</div>
</a>
</div>
</div>
</div>
<!-- Slide 3 -->
<div class="mySlides w3-display-container">
<img src="Images/accountant-1238598_1920.jpg" style="width:100%; max-height: 1000px;">
<div class="w3-display-right w3-container" style="text-align: right;">
<div style="background-color: #fff; padding: 5px; margin-bottom: 5px;">
<h2 style="color: #162347; margin: 0; font-size: 28px;">Accounting, Bookkeeping and Taxation Services</h2>
</div>
<div style="display: flex; flex-direction: column; align-items: flex-end;">
<div style="background-color: #bcd4e6; padding: 5px; margin-bottom: 5px; width: 400px;">
<p style="color: #162347; margin: 0; font-size: 18px; text-align: right;">SIMPLE SUM IN LONDON </p>
</div>
<a href="#contact" style="text-decoration: none;">
<div style="background-color: #bcd4e6; padding: 5px; width: 200px; text-align: center;">
<p style="color: #162347; margin: 0; font-size: 18px;">Contact us</p>
</div>
</a>
</div>
</div>
</div>
<!-- Overview Section -->
<div class="w3-container w3-content w3-center w3-padding-64" style="max-width:800px" id="overview">
<h2 class="w3-wide">Bookkeeping and Accountancy in London</h2>
<p class="w3-opacity"><i>EFFICIENTLY MAINTAINING YOUR FINANCIAL RECORDS</i></p>
<p class="w3-justify">Whether you're working as self-employed, a sole trader or trading on private or public limited company basis, Bookkeeping and Accounting is the most important part of any size or type of business. With managing your business on a daily basis, comes many challenges which can take all your efforts, energy, dedication and commitment to meet.<br>
<p> Keeping your financial records up to date while you’re facing those challenges, can be very stressful and take up time when you should be running your business effciently and profitably, to make progress for the future. </p>
<p> Well, to avoid these issues, we are here to help you as certified bookkeepers. We'll take over your stress and anxiety, making all paperwork disappear, substituted with orderly, well presented records for you and others. VAT returns can be done with ease, all invoices managed and monthly or quarterly figures can be presented as you require.</p>
<div class="w3-row w3-padding-32">
<div class="w3-quarter">
<div class="w3-container w3-border w3-padding-16 w3-light-grey">
<!-- Icon -->
<img src="Images/book-solid.svg" alt="Book icon" style="width: 60px; height: 60px;">
<!-- Text -->
<p style="margin-bottom: 0;">BOOKKEEPING</p>
</div>
</div>
<div class="w3-quarter">
<div class="w3-container w3-border w3-padding-16 w3-light-grey">
<!-- Icon -->
<img src="Images/calculator-solid.svg" alt="Calculator icon" style="width: 60px; height: 60px;">
<!-- Text -->
<p style="margin-bottom: 0;">ACCOUNTANCY</p>
</div>
</div>
<div class="w3-quarter">
<div class="w3-container w3-border w3-padding-16 w3-light-grey">
<!-- Icon -->
<img src="Images/clipboard-solid.svg" alt="Clipboard icon" style="width: 60px; height: 60px;">
<!-- Text -->
<p style="margin-bottom: 0;">BUDGETING</p>
</div>
</div>
<div class="w3-quarter">
<div class="w3-container w3-border w3-padding-16 w3-light-grey">
<!-- Icon -->
<img src="Images/percent-solid.svg" alt="Percentage icon" style="width: 60px; height: 60px;">
<!-- Text -->
<p style="margin-bottom: 0;">VAT RETURN</p>
</div>
</div>
</div>
</div>
<!-- About Us Section -->
<div class="w3-container w3-padding-64 w3-light-grey" id="about" style="width: 100vw; display: flex; flex-direction: column; align-items: center;">
<div style="flex: 1; width: 100%; max-width: 800px; text-align: center;">
<h2 class="w3-wide">About Us</h2>
<p class="w3-opacity"><i>LONDON CERTIFIED BOOKKEEPERS</i></p>
<p>Simple Sum is a local certified bookkeepers and based in the West London area. We offer the most reliable, flexible and professional services for Accounting, Bookkeeping and Taxation Services to all small to medium size of businesses.</p>
<p>Simple Sum is a member of the ICB (Institute of Certified Bookkeepers) and AAT (Association of Accounting Technician) and has been running since April 2012. We are associated with the chartered Accounting Firms where chartered level work is shared with Chartered Accountants.</p>
<p>Simple Sum take care of their clients with care and commitment where services are offered with knowledge and the best advice. We welcome the opportunity to discuss all your needs and devise a solution for your requirements face to face with an on-site consultation at no extra cost. </p>
<p>Explore more about our services below, and please contact us by filling out our contact form at the bottom of the page.</p>
</div>
<div style="display: flex; flex-direction: column; align-items: center; margin-top: 20px;">
<img src="Images/xero-certified-advisor-logo-hires-RGB-e1541376639280.png" style="width: 200px; height: 100px; margin-bottom: 20px;">
<img src="Images/Advanced+Certification+logo+(1)-1280w.webp" style="width: 200px; margin-bottom: 20px;">
</div>
</div>
<!-- Our Services Section -->
<div class="w3-container w3-padding-64" id="services" style="background-color: white;">
<h2 class="w3-wide">Our Services</h2>
<p>Bookkeeping and Accounts vary from business to business, and personal service is always very important. You will always receive a free, no-obligation and in person, face-to-face consultation before taking over your books and coming on board.</p>
<p>We offer a number of services as below:</p>
<ul>
<li>Bookkeeping to trial balance</li>
<li>Management accounting</li>
<li>Cash flow forecasts</li>
<li>Payroll, employee records, plus year-end submission</li>
<li>Computerised accountancy systems</li>
<li>Personal taxation</li>
<li>Costing and budgeting</li>
<li>Preparation of final accounts for partnerships</li>
<li>Preparation of final accounts for sole traders</li>
<li>Draft final accounts for Ltd companies</li>
<li>Self-assessment tax</li>
<li>Submission of business tax returns</li>
<li>Maintaining fixed asset register</li>
<li>VAT returns</li>
</ul>
</div>
<!-- Contact Section -->
<div class="w3-container w3-padding-64 w3-light-grey" id="contact" style="text-align: center;">
<h2 class="w3-wide">Send Us Your Enquiry</h2>
<form action="https://formspree.io/f/mzbngewq" method="POST">
<div style="display: flex; flex-wrap: wrap; justify-content: center;">
<input class="w3-input w3-border w3-margin-bottom" type="text" name="Name" placeholder="Name" style="width: 20%; margin: 0 5px;" required>
<input class="w3-input w3-border w3-margin-bottom" type="text" name="Business Name" placeholder="Business Name" style="width: 20%; margin: 0 5px;" required>
<input class="w3-input w3-border w3-margin-bottom" type="email" name="_replyto" placeholder="Email" style="width: 20%; margin: 0 5px;" required>
<input class="w3-input w3-border w3-margin-bottom" type="tel" name="Phone" placeholder="Phone" style="width: 20%; margin: 0 5px;" pattern="[0-9]{8,12}" title="Please enter a valid phone number" required>
<textarea class="w3-input w3-border" name="Message" placeholder="Message" style="width: 83%; height: 200px; margin: 0 5%;" required></textarea>
<button type="submit" style="background-color: #162347; color: white; padding: 10px 20px; border: none; cursor: pointer; transition: background-color 0.3s ease; margin-top: 10px; margin-left: 5%; align-self: flex-start;">Submit</button>
</div>
</form>
</div>
<!-- End Page Content -->
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-32" style="text-align: left; background-color: #ffffff;">
<div class="w3-row-padding">
<div class="w3-twothird">
<h4 style="font-weight: bold; color: #333;">Get In Touch</h4>
<p style="font-size: 14px;"><i class="fa fa-envelope"></i> Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p style="font-size: 14px;"><i class="fa fa-phone"></i> Phone: 07922 593648</p>
<p style="font-size: 14px;"><i class="fa fa-map-marker"></i> London and surrounding areas</p>
<p style="font-size: 14px;"><i class="fa fa-clock-o"></i> Mon - Fri: 9AM - 5PM</p>
</div>
<div class="w3-third w3-padding" style="text-align: right;">
<img src="Images/simple_sum.svg" alt="Logo" style="max-height: 100px; width: auto;">
</div>
</div>
</footer>
<script>
// Automatic Slideshow - change image every 4 seconds
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1}
x[myIndex-1].style.display = "block";
setTimeout(carousel, 4000);
}
// Used to toggle the menu on small screens when clicking on the menu button
function myFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
// When the user clicks anywhere outside of the modal, close it
var modal = document.getElementById('ticketModal');
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
</body>
</html>