-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.73 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
<!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="./nav.css">
<link rel="stylesheet" href="./index.css">
<title>Banking System</title>
<body style="background-color:#e5f798;"></body>
</head>
<body>
<header>
<nav class="main-nav">
<ul class="navlinks">
<li><a href="./index.html">Home</a></li>
<li><a href="./customer.html">Customers</a></li>
</ul>
</nav>
</header>
<section>
<div class="title">
<h1>
<span>SPARKS</span>
<span>BANK</span>
</h1>
</div>
<div class="bank-content">
<div class="box">
<div class="content">
<h2>Welcome to our Bank </h2>
<p>The Sparks Foundation Bank </p>
<div class="bank-img">
<img src="./Banking.jpg" alt="bank-image" width="900" height="500"/>
</div>
<h3>You can check Customers </h3>
<p>Online banking, also known as internet banking, web banking or home banking, is an electronic payment system that enables customers of a bank or other financial institution to conduct a range of financial transactions through the financial institution's website.</p>
<div class="bank-img">
<img src="./bank.jpg" alt="bank-image" width="900" height="500"/>
</div>
</div>
</div>
</div>
</section>
</body>
</html>