-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (95 loc) · 4.63 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
<html>
<head>
<title>Basic Banking System</title>
<link rel="stylesheet" href="style.css" >
<!-- CSS -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<!-- Google fonts -->
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap" rel="stylesheet"
type='text/css'>
<link href="https://fonts.googleapis.com/css2?family=Arvo:ital,wght@1,700&display=swap" rel="stylesheet">
<!--logo-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css"/>
</head>
<body onload="loader()">
<!-- loader for splash screen -->
<div id="loading"></div>
<section id="nav-bar">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="#"><img src=""></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-bars"="true"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<!-- <a class="nav-link text-white" href="/">Home <span class="sr-only">(current)</span></a>-->
<a class="nav-link" href="index.html">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="customer.html">View Customers </a>
</li>
</li>
<li class="nav-item">
<a class="nav-link" href="customer.html">Transfer History</a>
</li>
<li class="nav-item">
<a class="nav-link" href="bank.html">About Us</a>
</li>
</ul>
</div>
</nav>
</section>
<!--banner section-->
<section id="main" class="coloured-section">
<div class="container">
<h1>
<img src="logo for website.png" width="90px" height="90px">
The Sparks Foundation Bank!
<img src="logo for website.png" width="90px" height="90px">
</h1>
</div>
</section>
<section id="features" class="white-section">
<br>
<br>
<button type="button" class="btn btn-dark btn-lg download-button"><h4 class="text">How Can We Help You?</h4></button><br><br>
<a href="customer.html"><button type="button" class="btn btn-dark btn-lg download-button"><h3 class="text"><i>View Customers</i></h3></button></a><br><br>
<a href="customer.html"><button type="button" class="btn btn-dark btn-lg download-button"></i> <h3 class="text"><i>Transaction History</i></h3></button></a><br>
</section>
</section>
<!-- Footer -->
<footer id="footer" class="coloured-section">
<p>FIND US ON SOCIAL MEDIA</p>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<i class="social-icon fa fa-facebook-square"aria-hidden></i>
<i class="social-icon fa fa-instagram" aria-hidden="true"></i>
<i class="social-icon fa fa-twitter" aria-hidden="true"></i>
<i class="social-icon fa fa-linkedin" aria-hidden="true"></i>
<p>© Copyright 2021 THE SPARKS BANK.</p>
</footer>
<script>
var preloader = document.getElementById("loading");
function loader(){
preloader.style.display = 'none';
}
</script>
<script src="script.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://unpkg.com/popper.js@1.12.6/dist/umd/popper.js"></script>
<script src="https://unpkg.com/bootstrap-material-design@4.1.1/dist/js/bootstrap-material-design.js"></script>
<!-- aos data -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 700,
});
</script>
</body>
</html>