-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
54 lines (51 loc) · 1.01 KB
/
index.php
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
<!DOCTYPE html>
<?php
$conn = new mysqli("localhost", "root", "", "banking");
?>
<html>
<body>
<center>
<div class="abc">
<h1><strong>Basic Banking System</strong></h1>
</div>
</center>
<div class="topnav">
<a class= href="#">Contact</a>
<a href="bank2.php">view all customer</a>
<a href="#">About</a>
<a class="active" href="#">Home</a>
</div>
</body>
<style>
body {
background-image: url('https://devathon.com/wp-content/uploads/2020/02/Top-10-Payment-Gateways-Devathon.png');
}
.abc{
background-color: #FAEBD7;
color: #A9A9A9;
}
.topnav {
background-color: #333;
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: right;
color: #f2f2f2;
text-align: center;
padding: 20px 26px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #4CAF50;
color: white;
}
</style>
</html>