-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbank1.html
More file actions
83 lines (67 loc) · 2.3 KB
/
bank1.html
File metadata and controls
83 lines (67 loc) · 2.3 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
<!DOCTYPE HTML>
<!--
Visualize by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html>
<head>
<title>Welcome To Unity Bank</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<style>
#logo
{
width:30%;
height:70%;
}
#first{ margin-top:20px;}
#second{ margin-top:90px;}
#third{ margin-top:75px;}
</style>
</head>
<body>
<div id="first">
<a href="1.php">
<img src="images/home.png" alt="" / width="100" height="100">
</a>
<img src="images/04.png" id="logo">
<div>
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<section id="main">
<!-- Thumbnails -->
<section class="thumbnails">
<div id="second">
<a href="create_account.php">
<img src="images/01.jpg" alt="" />
<h3>Create Account</h3>
</a>
</div>
<div id="third">
<a href="withdraw2.php">
<img src="images/03.jpg" alt="" />
<h3>Withdraw Cash</h3>
</a>
</div>
<div id="second">
<a href="deposit2.php">
<img src="images/02.jpg" alt="" />
<h3>Deposit Cash</h3>
</a>
</div>
</section>
</section>
</div>
<!-- Scripts -->
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>