-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
84 lines (66 loc) · 2.69 KB
/
contact.php
File metadata and controls
84 lines (66 loc) · 2.69 KB
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
<?php
session_start();
?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- External CSS -->
<link rel="stylesheet" href="style.css">
<title>Mark's Bank </title>
</head>
<body>
<!--nevbar-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Mark's Bank</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class=" collapse navbar-collapse justify-content-end" id="navbarNavAltMarkup">
<div class="navbar-nav ml-auto pr-3">
<a class="nav-link active" aria-current="page" href="#">Home</a>
<a class="nav-link" href="#"> Money Transfer </a>
<a class="nav-link" href="#"> Transactions History </a>
<a class="nav-link" href="#">Contact </a>
</div>
</div>
</div>
</nav>
<!-- Background Image -->
<div class="backimg">
<img src="images/contact.jpg" class="img-fluid" alt="Mark's Bank">
</div>
<div class="container">
<div class="row">
<div class="col">
<div class="card mx-auto my-5 ">
<div class="card-header bg-secondary text-white text-center">
<h4> Contact With Mark's Bank </h4>
</div>
<div class="card-body text-center">
<h5 class="card-title">Email : Mayurpatilofficial10@gmail.com</h5>
<p class="card-text">We supporting you always plese contact with us for any querys </p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<nav class="navbar fixed-bottom navbar-dark bg-dark">
<div class="container-fluid justify-content-center ">
<a class="navbar-brand text-center footertxt" href="#">
<h6> Copyright @ 2021 Mark's Bank From The Sparks Foundation </h6>
</a>
</div>
</nav>
</footer>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>