-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbank.html
More file actions
82 lines (72 loc) · 3.17 KB
/
bank.html
File metadata and controls
82 lines (72 loc) · 3.17 KB
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
<html>
<head>
<title>AS National Bank Info</title>
<link rel="icon" href="imgs/titleicone.png">
<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">
</head>
<body>
<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</a>
</li>
<li class="nav-item">
<a class="nav-link" href="customer.html">View Customers</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">
<img
src="imgs/bank2.jpg"
width="200" height="200">
<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">
<img src="imgs/bank3.jpg"
width="200" height="200">
<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">
<img
src="imgs/bank4.jpg"
width="200" height="200">
<h3 class="feature-title">We are here for a service of trust.</h3>
<p>Send your money easily from anywhere.</p>
</div>
</div>
</section>
</body>
</html>