-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
85 lines (76 loc) · 3.36 KB
/
contact.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
<!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 - contact</title>
<link rel="stylesheet" href="style.css">
<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>
<style>
.header{
height: 100vh;
background-image: url("https://media.istockphoto.com/photos/finger-balancing-stacked-coins-on-seesaw-picture-id908800938?k=20&m=908800938&s=612x612&w=0&h=G4tuQW6q--DTIYn5Vl1nDRJphuAs0vED642gTRkD4Wc=");
background-repeat: no-repeat;
background-size: cover;
opacity: 0.99;
}
</style>
</head>
<body>
<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">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" class="active">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>
<div class="headc">
<h1>Our Contact Details</h1>
<hr>
<div class="details">
<div class="card">
<h2>Call Us Now</h2>
<div class="cardcontent">
+91-7829362798
</div>
</div>
<div class="card">
<h2>Mail Us Now</h2>
<div class="cardcontent">
sparksbank@sparks.com
</div>
</div>
<div class="card">
<h2>Reach Us At</h2>
<div class="cardcontent">
Headquarter: Noida-102984
</div>
</div>
</div>
</div>
<footer id="footer">
|Copyright © 2022 SparksFoundationBank.com | All rights reserved
</footer>
</header>
</body>
</html>