-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (61 loc) · 3.13 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
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link property="og:image"
href="https://image.shutterstock.com/image-vector/bank-icon-logo-vector-260nw-399995245.jpg">
<title>Home | CS Bank</title>
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link rel="shortcut icon" href="bankicon.ico" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="index.css" />
</head>
<body>
<!-- navbar starts here -->
<nav class="navbar sticky-top navbar-expand-lg navbar-dark px-4">
<div class="container-fluid ">
<a class="navbar-brand" href="#">CS BANK</a>
<button class="navbar-toggler " type="button " data-bs-toggle="collapse "
data-bs-target="#navbarSupportedContent " aria-controls="navbarSupportedContent " aria-expanded="false "
aria-label="Toggle navigation ">
<span class="navbar-toggler-icon "></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 ">
<li class="nav-item ">
<a class="nav-link active" aria-current="page " href="#">HOME</a>
</li>
<li class="nav-item ">
<a class="nav-link " href="./customer.html">CUSTOMERS</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- navbar ends here -->
<div class="Home text-center ">
<h1 class="">WELCOME TO CYBER SECURE BANK</h1>
</div>
<!-- buttons -->
<div class="text-center text-white">
<a href="customer.html"><button type="button" class="btn btn-success btn-lg mr-2">View All Customers Details</button></a>
</div>
<footer class="footer mt-auto py-3 bg-body-tertiary border-bottom border-bottom-dark bg-dark fixed-bottom" data-bs-theme="dark">
<div class="container d-flex justify-content-between">
<span class="text-body-secondary">This Website is made by Jashmit Under The Sparks Foundation @GRIPJUNE24</span>
<span class="text-body-secondary">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<a class="btn btn-dark" href="https://github.com/Jashmit918" role="button"><i
class="social-icon fa fa-github"></i></a>
<a class="btn btn-dark" href="https://www.linkedin.com/in/jashmit-kumar-mansingh/"
role="button"><i class="social-icon fa fa-linkedin"></i></a>
</span>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js "
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4 "
crossorigin="anonymous "></script>
</body>
</html>