-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 2.54 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MyBank - Home</title>
<link href="https://fonts.googleapis.com/css2?family=Syne+Tactile&family=Ubuntu&family=Ubuntu+Mono:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body onload="loader()">
<header class="header">
<div class="mainHeader">
<img src="https://png.pngtree.com/template/20190316/ourmid/pngtree-banking-logo-image_80425.jpg" alt="logo">
<h1>My Bank</h1>
</div>
<div class="navbar">
<ul>
<li ><a href="index.html" class="active">Home</a></li>
<li><a href="customers.html">View All Customers</a></li>
<li><a href="moneyTransaction.php">Money Transanction</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="help.html">Help</a></li>
</ul>
<div class="right">
<input type="text" name="search" id="search" placeholder="Search here..">
</div>
</div>
<main>
<section class="left-sec">
<h1 class="animate_animated animate__fadeInRightBig py-3"> THE SPARKS FOUNDATION</h1>
<footer>
<h2 class=footer>Created by Sweta @ The Spark Foundation Web Development Intern.</h2>
</footer>
</main>
<footer id="footer">
|Copyright © 2022 SparksFoundationBank.com | All rights reserved
</footer>
</header>
<script src="index.js"></script>
</body>
</html>