-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
223 lines (206 loc) · 10.4 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
<!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">
<meta name="description" content="Our goal at TaxIt.NG is to make tax payment seamless and transparent using technology to create transparent channel through which citizens can hold their government accountable, and have the capacity to choose what projects their taxes should go into">
<meta name="keywords" content="Tax, TaxIt.NG, citizens firs, VAT, Witholding Tax, Nigeria Tax, taxpayers in nigeria, government, how to pay tax in Nigeria, company income tax, Federal Inland Revenue service Nigeria">
<!-- <script src="https://kit.fontawesome.com/f618f790f8.js"></script> -->
<!-- font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato|Raleway|Source+Sans+Pro&display=swap" rel="stylesheet">
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="./css/responsive.css">
<link rel="shortcut icon" href="https://res.cloudinary.com/oluwamayowaf/image/upload/v1567467076/Logo_TaxitNg_favicon_copy_aey0cu.png" type="image/x-icon">
<title>TaxIt.ng || Home</title>
</head>
<body>
<!--
<div class="nav-container">
<div class="logo-section">
<a href="home.html"><img src="https://res.cloudinary.com/dcczd9zz5/image/upload/v1567174130/ff_nbwkbr.png"></a>
</div>
<nav>
</div>
<header>
<div class="container">
<div class="header">
<div class="logo">
<a href="index.html">
<img src="https://res.cloudinary.com/dcczd9zz5/image/upload/v1567174130/ff_nbwkbr.png">
</a>
</div>
<ul class="menu">
<a href="index.html" class="active">Home</a>
<a href="project.html">Projects</a>
<a href="payment.html">Pay Tax</a>
<a href="contact.html">Contact Us</a>
<a href="#">Team</a>
<a href="about.html">About Us</a>
<a href="signin.html" id="menu-highlight"><button class="login-btn" type="button">Login</button></a>
</ul>
</div>
</div>
</header>-->
<div class="header" id="myheader">
<a href="home.html" class="logo"><img src="https://res.cloudinary.com/dcczd9zz5/image/upload/v1567174130/ff_nbwkbr.png"></a>
<div class="header-right">
<a href="index.html">Home</a>
<a href="project.html">Projects</a>
<a href="payment.html">Pay Tax</a>
<a href="contact.html">Contact Us</a>
<a href="team.html">Team</a>
<a href="about.html">About Us</a>
<a href="signin.html" id="menu-highlight"><button class="login-btn" type="button">Login</button></a>
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myFunction()">☰</a>
</div>
</div>
<script>
function myFunction() {
var x = document.getElementById("myheader");
if (x.className === "header") {
x.className += " responsive";
} else {
x.className = "header";
}
}
</script>
<main>
<!-- landing banner -->
<div class="container">
<section class="landing">
<div class="row justify-between">
<div class="col-5 order-2">
<div class="landing-text">
<h1>Tax Payment System</h1>
<p>
Taxpayers feel cheated, neglected, and even worst still suffers multiple taxation due to lack of proper documentation and corruption.
</p>
<p>
Our goal at TaxIt.NG is to make tax payment seamless and transparent using technology to create transparent channel through which citizens can hold their government accountable, and have the capacity to choose what projects their taxes should go into
</p>
<p>
Citizens will be able to effectively track their preferred
<!-- and effectively track their preferred -->
project's progress to drive the change we need and deserve in Nigeria.
</p>
<button class="btn" onclick="location.href='project.html'">Get Started</button>
</div>
</div>
<div class="col-4 order-1">
<div class="landing-image">
</div>
</div>
</div>
</section>
<!-- ./ landing -->
</div>
<section class="payments">
<div class="container">
<div class="row">
<div class="col-9 order-2">
<div class="card-payment">
<h3>Credit Card Payments</h3>
<p>
Pay your tax and utility bills virtually using your credit card at one spot and maximize cash flow.
</p>
<p>No need to write and send paper checks.</p>
<p>
Easily schedule and track future & recurring payments. Send payments with your credit card, even where credit cards are not accepted.
</p>
</div>
</div>
<div class="col-3 order-1">
<div class="card__payment-bg"></div>
</div>
</div>
<div class="row mt__3">
<div class="col-9 order-2">
<div class="card-payment">
<h3>Fund Projects</h3>
<p>
Pay your tax and utility bills virtually using your credit card at one spot and maximize cash flow.
</p>
<p>
You can now fund and track governmental projects from the comfort of your home and watch it grow. Share your intrested projects with friends and family and help impact the nation positively.
</p>
<p>
We also include hand pick private sector busineses that you can partner from the comfort of you home.
</p>
</div>
</div>
<div class="col-3 order-1">
<div class="fund__payment-bg"></div>
</div>
</div>
</div>
</section>
<section class="panel">
<button class="btn btn-start" onclick="location.href='project.html'">GET STARTED</button>
</section>
</main>
<footer>
<div class="footer-logo">
<a href="index.html">
<img src="https://res.cloudinary.com/dcczd9zz5/image/upload/v1567174130/ff_nbwkbr.png">
</a>
</div>
<div class="row mt__3">
<div class="col-4">
<div class="about">
<h4>About Us</h4>
<p>TaxIt.NG is a financial non-governmental organisation built by a team of young interns and change agents to solve the persisting problem of tax collection and poor accountable utilisation of tax revenue to create social development
and benefits to taxpayers... <a href="">More</a> </p>
</div>
</div>
<div class="col-3">
<div class="news">
<h4>Newsletter</h4>
<p>Stay updated with our latest news & products</p>
<div id="embed-signup">
<form target="_blank" action="https://spondonit.us12.list-manage.com/subscribe/post?u=1462626880ade1ac87bd9c93a&id=92a4423d01" method="get" class="subscribe_form relative">
<div>
<input name="EMAIL" placeholder="Email Address" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Email Address '" required="" type="email">
<button id="go-btn">Go</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-3">
<div class="contact">
<h4>Contact Us</h4>
<p>3, Birrel Avenue <br> Yaba, Lagos <br>
<a href="mailto:[email protected]">[email protected]</a> <br> 01-2345678 <br> 08489102638, 8920271538. <br>
</p>
</div>
</div>
<div class="col-3">
<div class="social">
<h4>Follow Us</h4>
<div class="sm">
<a href="#"><i class="fab fa-twitter"></i></a>    
<a href="#"><i class="fab fa-facebook-square"></i></a>    
<a href="#"><i class="fab fa-instagram"></i></a>    
<a href="#"><i class="fab fa-whatsapp"></i></a>    
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class=" mt__3">
<div class="copyright">
<p>
Copyright ©
<script>
document.write(new Date().getFullYear());
</script>     All rights reserved | Team Helsinki
</p>
</div>
</div>
</footer>
</body>
</html>