-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbank.html
79 lines (76 loc) · 4.09 KB
/
bank.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
<html>
<head>
<title>Bank Info</title>
<link rel="stylesheet" href="style.css" >
<!-- CSS -->
<link rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/css/bootstrap-material-design.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/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<!-- Google fonts -->
<link rel="stylesheet" href="assets/css/customer.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="./index.html">Bank of Ghaziabad</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<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="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="./index.html">Home </a>
</li>
<li class="nav-item active">
<a class="nav-link" href="./customers.html"
style="color: rgb(37, 36, 36)!important; background-color: rgb(180, 178, 178);">Send Money</a>
</li>
<li class="nav-item">
<a class="nav-link" href="bank.html">About Us<span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</nav>
</section>
<!----------------------------------------->
<section id="action" class="coloured-section">
<h1 class="title">Why should you choose us ?</h1>
</section>
<section id="features1" class="white-section">
<div class="row text-center">
<div class="feature-boxes col-lg-4 col-md-6">
<h3 class="feature-title">Do banking in just single click</h3>
<p>You can check your transaction easily by one click.</p>
</div>
<div class="feature-boxes col-lg-4 col-md-6">
<h3 class="feature-title">Check your Transaction.</h3>
<p>We provide you best and secure networks to work.</p>
</div>
<div class="feature-boxes col-lg-4 col-md-6">
<h3 class="feature-title">We are here for a service of trust.</h3>
<p>Send your money easily from anywhere.</p>
</div>
</div>
</section>
<!---Action -->
<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 Vikas Sharma.</p>
</footer>
</body>
</html>