-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
78 lines (71 loc) · 2.47 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic Banking System</title>
<link rel="stylesheet" href="style_index.css">
<style type="text/css">
.container{
margin-right: 50px;
margin-left: 50px;
}
.logo{
display: flex;
justify-content: center;
align-items: center;
width: 100px;
}
.title{
color: white;
margin-top: 10px;
margin-bottom: -5px;
margin-left: -17px;
font-family: 'Gabriela', serif;
font-size: 20px;
}
</style>
</head>
<body>
<div class="container">
<div><img src="assets/bank_logo.jpg" class="logo"></div>
<div class="title" >The Sparks Bank</div>
<div class="navbar">
<br />
<a class="active" href="index.html">Home</a>
<a href="https://github.com/zul132" target="_blank">About Us</a>
<a href="customers.php">View Customers</a>
<a href="transferMoney.php">Transfer Money</a>
<a href="transactions.php">Transaction History</a>
<a href="https://www.linkedin.com/in/fathima-zulaikha-2741a4217/" target="_blank">Contact Us</a>
<br />
</div>
</div>
<div class="welcome"> <!-- class: container-->
<div class="header"> Welcome to the Sparks Bank! </div>
<img src="assets/bank.png" height=65% width=30% alt="Welcome to the Sparks Bank!" style="padding: 5px; margin-right: 8vw; margin-top:8vh; float:right">
</div>
<section class="features" >
<div class="servicesBox">
<strong>Our Services</strong> <br><br>
</div>
<div class="feature-row">
<div class="feature-col">
<img src="./assets/customers.png">
<h2><a href="customers.php"> Our Customers</a></h2>
</div>
<div class="feature-col">
<img src="./assets/transfer.png">
<h2><a href="transferMoney.php"> Transfer Money</a></h2>
</div>
<div class="feature-col">
<img src="./assets/piggy.png">
<h2><a href="transactions.php"> All Transactions</a></h2>
</div>
</div>
</section>
<div class="footer">
Designed and Developed by Fathima Zulaikha
</div>
</body>
</html>