-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
68 lines (60 loc) · 3.4 KB
/
about.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
<!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">
<title>MyBank - About</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Syne+Tactile&family=Ubuntu&family=Ubuntu+Mono:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<style>
.header{
height: 100vh;
background-image: url("https://media.istockphoto.com/photos/finger-balancing-stacked-coins-on-seesaw-picture-id908800938?k=20&m=908800938&s=612x612&w=0&h=G4tuQW6q--DTIYn5Vl1nDRJphuAs0vED642gTRkD4Wc=");
background-repeat: no-repeat;
background-size: cover;
opacity: 0.99;
}
</style>
</head>
<body>
<header class="header">
<div class="mainHeader">
<img src="https://png.pngtree.com/template/20190316/ourmid/pngtree-banking-logo-image_80425.jpg" alt="logo">
<h1>My Bank</h1>
</div>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="customers.html">View All Customers</a></li>
<li><a href="moneyTransaction.php">Money Transanction</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html" class="active">About Us</a></li>
<li><a href="help.html">Help</a></li>
</ul>
<div class="right">
<input type="text" name="search" id="search" placeholder="Search here..">
</div>
</div>
<div class="heada">
<h1>THE SPARKS FOUNDATION BANK</h1>
<hr>
<p class="inf">
Sparks Foundation Banks is an Indian multinational, public sector banking and financial services statutory body, fostering the nation’s 1.8 trillion-dollar economy and serving the hopes of its vast population.
For SBI, the interests of the common man havealways remained at the core of its business.With a customer-centric approach, the Bankhas designed products and services to meet the expectations of the financial life cycle of its valued clientele. Keeping pace with the transforming landscape of the Indian economy, SBI has broadened its digital base in the recent years. The Bank plays a fundamental role in making the Government of India's Digital India initiative a reality.
</p>
</div>
<footer id="footer">
|Copyright © 2022 SparksFoundationBank.com | All rights reserved
</footer>
</header>
</body>
</html>