-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (78 loc) · 3.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Banking System Website - Ashish Mishra</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="style.css">
<body>
<header>
<div class="logo">
<img src="Images/logo.png" alt="My Bank App Logo">
<h1><span>GRIP</span> BANK</h1>
</div>
<nav>
<ul>
<li><a href="home.html">Get Started</a></li>
<li><a href="#about">About Me</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
</header>
<div class="container">
<div class="Bank-section">
<div class="left">
<h1>Welcome to our Banking System Website</h1>
<p>We provide secure and convenient online banking services for our customers. Please click the button below and start sending money to yourfriends.</p>
<button onclick="location.href='home.html'"><a href="home.html" >Get Started</a></button>
</div>
<div class="right">
<div class="left-img">
<!-- <img src="Images/bank.gif" alt="bank image"> -->
</div>
</div>
</div>
</div>
<section id="about">
<h2>About Our Bank</h2>
<div class="about-content">
<div class="about-text">
<p>We are a trusted financial institution that has been serving our customers for over 50 years. We offer a wide range of banking services including checking accounts, savings accounts, loans, and more.</p>
<p>Our mission is to provide our customers with the highest level of customer service and support. We believe that everyone should have access to the financial tools they need to achieve their goals, which is why we offer competitive rates and fees.</p>
<p>At our bank, we prioritize security and privacy. We use the latest technology and security measures to ensure that our customers' information is always safe and secure.</p>
</div>
<div class="about-image">
<img src="bank.gif" alt="About Us Image">
</div>
</div>
</section>
<!-- Contact form section -->
<section id="contact">
<h2>Contact Us</h2>
<form action="submit-form.php" method="POST">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
</div>
<button type="submit">Submit</button>
</form>
</section>
<footer>
<p>Design & Developed By Ashish Mishra<br>© Copyright © GRIP Bank. All rights reserved.</p>
</footer>
</body>
</html>