-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathteam.html
102 lines (90 loc) · 4.65 KB
/
team.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
<!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">
<script src="https://kit.fontawesome.com/f618f790f8.js"></script>
<script src="js/team.js"></script>
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<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">
<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 || Team</title>
</head>
<body onload="generateTeam()">
<nav>
<div class="header">
<div class="logo">
<a href="home.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="#">Projects</a>
<a href="#">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>
</ul>
</div>
</nav>
<div id="team">
<h2>Meet The Team</h2>
<p>TaxIt.NG was built by a team of young start.ng 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 in Nigeria,where
there's a continuum between how citizens can assess the government's performance and their resolve to continue paying taxes towards these visible performance improvements. </p>
</div>
<div id="team-members"></div>
<span onclick="prevPage()" id="btn_prev"> << </span>
<span onclick="nextPage()" id="btn_next"> >> </span>
page: <span id="page"></span>
<footer>
<div class="logo">
<a href="home.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>