-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (112 loc) · 3.67 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!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>Sia Bank</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="ikkon.png">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<body>
<nav class="menu-container">
<!-- menu -->
<input type="checkbox" aria-label="Toggle menu" />
<span></span>
<span></span>
<span></span>
<!-- logo -->
<a href="#" class="menu-logo">
<img src="design.png" alt="My Banking Website"/>
</a>
<label class="logo">Sia Bank</label>
<!-- items -->
<div class="menu">
<ul>
<li>
<a href="#home">
Home
</a>
</li>
<li class="hello-tran">
<a href="#transaction">
Transaction
</a>
<div id="sub-menu-1">
<ul>
<li><a href="money_transfer.html">Money Transfer</a></li>
</ul>
</div>
</li>
<li>
<a href="#customer">
Customer
</a>
</li>
</ul>
<ul>
<li>
<a href="https://in.linkedin.com/">
Ashish Saha
</a>
</li>
<li>
<a href="#money">
Rs. 4,50,000
</a>
</li>
</ul>
</div>
</nav>
<div class="middle">
<h1>Take a step into online </h1>
<h1>banking with <span class="sia">Sia Bank</span></h1>
<p><span class="sbk">Sia Bank</span> brings you a healthy banking system and easy transfer<br> and receive of money. </p>
</div>
<a class="bn" href="money_transfer.html"><button class="button-30" role="button">Get Started</button></a>
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>About</h4>
<ul>
<li><a href="#">about us</a></li>
<li><a href="#">our services</a></li>
<li><a href="#">privacy policy</a></li>
<li><a href="#">affiliate program</a></li>
</ul>
</div>
<div class="footer-col">
<h4>get help</h4>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Reach Us</a></li>
<li><a href="#">Review</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Career</h4>
<ul>
<li><a href="#">Job</a></li>
<li><a href="#">Internship</a></li>
<li><a href="#">Freelance</a></li>
<li><a href="#">Remote</a></li>
</ul>
</div>
<div class="footer-col">
<h4>follow us</h4>
<div class="social-links">
<a href="https://www.facebook.com/"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/ashish-saha-6028a2204/"><i class="fab fa-linkedin-in"></i></a>
<p class="copy">Sia Bank ©2022</p>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>