-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
101 lines (91 loc) · 2.88 KB
/
about.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
li<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hello World About Us - English</title>
<link rel="stylesheet" href="style.css">
<!-- Glia script -->
<script src="https://api.beta.glia.com/salemove_integration.js"></script>
<!-- Glia script end -->
<style>
/* Style the navigation bar */
.navbar {
overflow: hidden;
background-color: #333;
font-family: Arial, sans-serif;
}
/* Style the links inside the navigation bar */
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.navbar a:hover {
background-color: #ddd;
color: black;
}
/* Dropdown container */
.dropdown {
float: left;
overflow: hidden;
}
/* Style the dropdown button */
.dropdown .dropbtn {
font-size: 17px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
/* Add a red background color to dropdown links on hover */
.dropdown-content a:hover {
background-color: #f1f1f1
}
/* Dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Placeholder images */
.placeholder-image {
width: 500px;
height: 300px;
background-color: #ccc;
margin: 10px;
}
</style>
</head>
<body>
<header>
<h1>About Us - English</h1>
</header>
<div class="container">
<h2>Welcome to OurBank</h2>
<p>OurBank is committed to providing exceptional banking services to our customers. With a focus on innovation and customer satisfaction, we strive to make banking convenient and secure for everyone.</p>
<h2>Our Mission</h2>
<p>At OurBank, our mission is to empower our customers and communities by offering reliable financial solutions and personalized services. We aim to build long-lasting relationships based on trust, integrity, and transparency.</p>
<h2>Our Team</h2>
<p>Our team consists of experienced professionals dedicated to delivering the highest level of service to our customers. We value diversity, teamwork, and continuous learning, ensuring that we are always equipped to meet our customers' needs.</p>
<h2>Contact Us</h2>
<p>If you have any questions or need assistance, please don't hesitate to contact us.</p>
<p>Email: [email protected]</p>
<p>Phone: 1-800-123-4567</p>
</div>
</body>
</html>