-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpayment.html
121 lines (107 loc) · 5.92 KB
/
payment.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
<!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">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://kit.fontawesome.com/f618f790f8.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato|Raleway|Source+Sans+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<title>TaxIt.ng || Home</title>
</head>
<body>
<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">Home</a>
<a href="project.html">Projects</a>
<a href="payment.html" class="active">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 class="calculate">
<h2>Calculate Tax</h2>
<form action="">
<p>
<label class="label">Status</label>
<select class="input">
<option value="1">Corporate</option>
<option value="2">Individual</option>
</select>
</p>
<p></p><input type="text" class="textinput" name="" id="" placeholder="Name of Tax Payer"></p>
<p></p><input type="email" class="textinput" name="" id="" placeholder="Email Address"></p>
<p></p><input type="number" class="textinput" name="" id="" placeholder="Phone No."></p>
<p>
<label class="label">Payment Month</label>
<select class="input">
<option value="sept">September</option>
<option value="oct">October</option>
<option value="nov">November</option>
</select>
</p>
<p></p><input type="number" class="textinput income" name="" id="" placeholder="Please, input your annual Income"></p>
<p><label class="percent">Tax % to be paid</label></p>
<p><button class="btn-pay" id="calculate">Calculate Tax</button></p>
<p></p><input type="number" class="textinput income" name="" id="" placeholder="Tax Amount"></p>
<p><button class="btn-pay" id="submit">Pay Tax</button></p>
</form>
</div>
</div>
<footer>
<div class="logo">
<a href="index.html"><img src="https://res.cloudinary.com/dcczd9zz5/image/upload/v1567174130/ff_nbwkbr.png"></a>
</div>
<div class="footer-contents">
<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 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 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 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 class="copyright">
<p>
Copyright ©<script>document.write(new Date().getFullYear());</script>     All rights reserved | Team Helsinki </p>
</div>
</div>
</footer>
</body>
</html>