-
Notifications
You must be signed in to change notification settings - Fork 0
/
HomePage.html
65 lines (64 loc) · 1.89 KB
/
HomePage.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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset="ISO-8859-1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<script src="https://kit.fontawesome.com/1a87f1ecb3.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="Customers.css">
</head>
<style>
p.name1{
text-align:center;
margin-top:100px;
font-size: 96px;
font-family: Roboto;
font-style: normal;
font-weight: normal;
color: #00b386;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
body.body
{
margin: 0px;
background-image: url("bg2.jpg");
height: auto; /* You must set a specified height */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover;
max-width:100%;
}
button.button{
background:#00CC99;
width: 280px;
margin-top:5px;
text-align: center;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
color: white;
font-size: 20px;
font-family: Roboto;
display: inline-block;
border-radius: 3px;
line-height: 60px;
}
button.button:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
background:#00b389;
}
.row{
text-align:center;
}
</style>
<body class="body">
<nav>
<form action="Servlet" method="get"><button name="transaction"><i class="fas fa-comments-dollar"></i></button></form>
<form action="Servlet" method="get"><button name="customer"><i class="fas fa-user"></i></button></form>
<button class="active"><i class="fas fa-home"></i></button>
</nav>
<p class="name1">Citizen Bank</p>
<div class=row>
<form action="Servlet" method="get"><button type="submit" name="customer" class="button">View all Customers</button></form>
<form action="Servlet" method="get"><button type="submit" name="transaction" class="button">View all Transactions</button></form>
</div>
</body>
</html>