-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
80 lines (68 loc) · 2.66 KB
/
home.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
79
80
<html>
<head>
<title>THE BANK OF UK</title>
<!-- CSS-->
<link rel="stylesheet" href="style.css" >
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css"/>
<!--Script-->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<!-- Google fonts -->
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
</head>
<!-- the body starts -->
<body onload="loader()">
<!-- the navbar section -->
<nav id="navbar">
<ul>
<div id="logo"><img src="logo.jpg"/><a href="home.html">THE BANK OF UK</a></div>
<div id="menu">
<li><a href="home.html">Home</a></li>
<li><a href="customer.html">All Users</a></li>
<li><a href="customer.html">Transfer Money</a></li>
</div>
</ul>
</nav>
<!-- the upper section -->
<section id="frontSection">
<div id="text"><img src="left2.gif"/>
<div id="hoto"><a href="home.html"><img src="bank.png"/></a></div>
</div>
<!-- the bottom section -->
<section id="transferSection">
<div class="card">
<div class="card-box">
<div class="card-img"><a href="customer.html"><img src="user.png"/></a></div>
<button class="btn"><a href="customer.html">All Users</a></button>
</div>
</div>
<div class="card">
<div class="card-box">
<div class="card-img"><img src="bag.gif"/></div>
</div>
</div>
<div class="card">
<div class="card-box">
<div class="card-img"><a href="customer.html"><img src="money.jpg"/></a></div>
<button class="btn"><a href="customer.html">Make Transaction</a></button>
</div>
</div>
</section>
</section>
<!-- tghe footer section -->
<footer id="footer">
© 2021 Done by UMESH KAUSHIK
The Sparks Foundation
</footer>
<!-- aos data -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 700,
});
</script>
</body>
</html>