-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (64 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>smartbanking - home</title>
</head>
<body>
<header>
<section class="title">
<h2><span class="logo">Smart</span>banking</h2>
<p>...Because you're smart</p>
</section>
<section class="head">
<h1>POS <span>Services</span></h1>
<div class="centered-div">
<button>BVN Enrollment</button>
<button>Account Opening</button>
</div>
</section>
</header>
<main class="main-flex">
<section >
<div>
<h3> <a href="#">Smart Save</a> </h3>
</div>
<div class="switch-bkg color">
<h3> <a href="#"> Loans & Investments</a></h3>
</div>
</section>
<section>
<div class="switch-bkg">
<h3><a href="#">POS Business Consistency & Services</a></h3>
</div>
<div class="color">
<h3><a href="#">Banking & Financial Advise Services</a></h3>
</div>
</section>
<section>
<div>
<h3><a href="#">Business Support Services</a></h3>
</div>
<div class="switch-bkg color">
<h3><a href="#">And other Miscellaneous Services</a></h3>
<ul class="list-flex">
<li>*Photocopy</li>
<li>*Printing</li>
<li>*Lamination</li>
<li>etc</li>
</ul>
</div>
</section>
</main>
<footer>
<a class="foot" href="#">www.smartbanking.com.ng</a>
<p style="color: gray; display: none;">By Timothy Iliya</p>
</footer>
<!-- <script>
alert("This is a static site and is in no way real")
</script> -->
</body>
</html>