forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (62 loc) · 2.49 KB
/
index.html
File metadata and controls
67 lines (62 loc) · 2.49 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header class="header content">
<h1>Biox Accounting Software.</h1>
<p>Biox Accounting Software is designed for Accountants & Bookkeepers.<br>
It is a cloud solution for recording accounting entries, preparing and filling accounts,
Tax and MTD VAT Returns.</p>
</header>
<article id="retro">
<h2>HMRC Approved Software.</h2>
<p>Biox Accounting Software has been named HMRC best cloud accounting software.<br>
It is widely used by accountancy firms and Bookkeeping professionals, <br>
delivering the compliance functionality that firms need.<br><br>
Here is a link to HRMC approved list of software:<br>
<a href="https://www.gov.uk/company-filing-software/filing-annual-accounts-returns-and-tax-accounts">HMRC approved Lists</a>
</p>
</article>
<article>
<h3>Award winning cloud base software.</h3>
<p>A survey conducted by all the accounting bodies in UK have produced the following results:
CIMA, 95% of accounting professionals prefer Biox.<br>
ACCA, 30% of accounting professionals prefer Biox.<br>
CIPFA, 75% of accounting professionals prefer Sage.<br>
ICAEW, 85% of accounting professionals prefer Biox.<br><br>
A link to UK Accounting bodies:
<a href="https://www.frc.org.uk/auditors/professional-oversight/oversight-of-the-accountancy-profession">UK Accounting bodies</a>
</p>
</article>
<article>
<h4>Testimonials</h4>
<p>Claire Bickley: Amazing software, recommended<br>
Justin Mako, I have used this software and it is superb. It saves time,
I submitted 100 self assessment in 30 minutes<br><br>
For more testimony go to:<br>
<a href="https://accountsiq.com/testimonials/">Testimonials</a>
</p>
</article>
<footer>
<p>Our Address: 11 Allowween Close, ND12 XCT</p>
<p>Our email Address: [email protected]</p>
<p>Our Telephone Number: 0234 768 908</p>
</footer>
</body>
</html>