-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome_Page.php
More file actions
104 lines (89 loc) · 2.04 KB
/
Home_Page.php
File metadata and controls
104 lines (89 loc) · 2.04 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="Basic Banking System Website">
<meta name="keywords" content="Banking system,HTML, CSS, JavaScript">
<meta name="author" content="Harshad Lukare">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="icon" type="image/jpg" href="TSFIMG.png" ></link>
</head>
<style>
.container {
position: relative;
width: 100%;
}
.container img {
width: 100%;
height: auto;
}
.container p{
position: absolute;
top: 5%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
color: yellow;
font-size:50px;
}
.container h3{
position: absolute;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
font-size:50px;
color: yellow;
}
.container .btn {
position: absolute;
top: 80%;
left: 40%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
background-color: #f1f1f1;
color: black;
font-size: 16px;
padding: 16px 30px;
border: none;
cursor: pointer;
border-radius: 5px;
text-align: center;
}
.container .btn1 {
position: absolute;
top: 80%;
left: 60%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
background-color: #f1f1f1;
color: black;
font-size: 16px;
padding: 16px 30px;
border: none;
cursor: pointer;
border-radius: 5px;
text-align: center;
}
.container .btn:hover {
background-color: black;
color: white;
}
.container .btn1:hover {
background-color: black;
color: white;
}
</style>
<body>
<div class="container">
<img src="bg.jpg" alt="The spark foundation" >
<p> By - Harshad Janardan Lukare </p>
<form name="myform" target="_blank" >
<h3>Basic Banking System</h3>
<center><button class="btn" name="button1" formaction="Second_Page.php">View All Customer</button>
<button class="btn1" name="button2" formaction="Transfer_Page.php">Transaction History</button></center>
</form>
</div>
</body>
<?php include 'connection.php' ?>
</html>