-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (65 loc) · 2.47 KB
/
index.html
File metadata and controls
67 lines (65 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bankaza Bank | Home</title>
<link rel="icon" href="./img/icon_bank.png">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://kit.fontawesome.com/50b1d2491c.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<!----------NAVIGATION BAR---------->
<div class="navigation">
<div class="logo">
<img src="./img/icon_bank.png" alt="logo">
Bank<span class="logo-hlt">aza</span> Bank
</div>
<nav>
<ul>
<li>
<a href="index.php">Home</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="customer.php">Customers</a>
</li>
<li>
<a href="#footer">Contacts</a>
</li>
</ul>
</nav>
</div>
<!----------BANNER---------->
<div class="banner">
<img src="./img/banner-2.jpg" alt="online Banking">
</div>
<!----------MAIN FUNCTION---------->
<div class="heading">
<h2><i class="far fa-smile"></i> Welcome to our Online Banking Service <i class="fas fa-wallet"></i></h2>
</div>
<div class="main_function">
<div class="welcome">
<img src="./img/net_banking.png" alt="Welcome">
</div>
<form action="">
<button id="vcustomer" name="View Customer" value="View Customer" formaction="customer.php">Transfer Money</button>
<br />
<button id="vhistory" name="Transaction History" value="Transaction History" formaction="history.php">Transaction History</button>
</form>
</div>
</div>
<!----------FOOTER---------->
<footer id="footer">
<p>© Copyright 2021 <span class="footer_logo">Bankaza Bank</span></p>
<div class="social-icon">
<a href="https://www.linkedin.com/in/reddykumaraswamy"><i class="fab fa-linkedin-in"></i></a>
<a href="mailto: reddy.kumaraswamy15@gmail.com"><i class="fas fa-envelope"></i></i></a>
<a href="#"><i class="fas fa-phone"></i></a>
</div>
</footer>
</body>
</html>