-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
168 lines (152 loc) · 5.16 KB
/
contact.php
File metadata and controls
168 lines (152 loc) · 5.16 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!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">
<link rel="shortcut icon" href="https://img.icons8.com/emoji/48/000000/bank-emoji.png" type="image/x-icon">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css">
<link rel="stylesheet" href="style.css">
<title>Money Transfer Contact Us</title>
<style>
body {
background: linear-gradient(30deg,rgb(243, 243, 204), lightgreen, rgb(63, 57, 57));
z-index: -1;
}
.contact {
display: flex;
flex-direction: column;
padding: 20px;
justify-content: center;
}
.content {
display: flex;
flex-direction: column;
margin: auto;
padding: 5px;
}
.content h1 {
padding: 5px;
text-align: center;
font-family: Impact, Haettenschweiler, sans-serif;
}
.box {
display: flex;
padding: 20px;
margin: 10px 15px;
justify-content: center;
align-items: center;
border-top: 1px solid black;
}
.icon {
display: flex;
padding: 5px;
justify-content: center;
align-items: center;
}
.text {
display: flex;
flex-direction: column;
padding: 10px;
margin: 5px;
}
.contactform {
display: flex;
flex-direction: column;
padding: 20px;
margin: 10px 15px;
justify-content: center;
align-items: center;
border-top: 1px solid black;
}
form {
margin: 20px;
}
.inputbox {
display: flex;
align-items: center;
padding: 10px;
}
input {
padding: 5px;
margin: 5px;
}
button {
cursor: pointer;
margin-left: 50px;
padding: 8px 20px;
margin: 7px 0;
border: 2px solid rgb(92, 27, 27);
border-radius: 80px;
color: blue;
cursor: pointer;
}
</style>
</head>
<body>
<nav class="navbar background">
<div class="logo"><img src="icon.jpg" alt="logo"></div>
<ul class="nav_list">
<div id="nav-contain">
<li> <a href="index.php">Home</a></li>
<li> <a href="about.php">About Us</a></li>
<li> <a href="service.php">Services</a></li>
<li> <a href="contact.php">Contact</a></li>
</div>
</ul>
</nav>
<!-- <div class="pic"><img src="Image/Back.jpg" alt="pic"></div> -->
<section class="contact">
<div class="content">
<h1>Welcome here..</h1>
<p>If there any query regarding banking system or to improve the system you can contact us. So that in
future it'll be more reliable to use.</p>
</div>
<div class="container">
<div class="contactInfo">
<div class="box">
<div class="icon">
<i class="fal fa-address-card"></i>
<div class="text">
<h3>Address</h3>
<p>321 Kalpataru Residency,<br>Sion Laxmi Baugh<br>Mumbai:400022</p>
</div>
</div>
<div class="icon">
<i class="fas fa-phone"></i>
<div class="text">
<h3>Phone</h3>
<p>480-321-6999</p>
</div>
</div>
<div class="icon">
<i class="fas fa-envelope"></i>
<div class="text">
<h3>Email</h3>
<p>shivamgupta22296@gmail.com</p>
</div>
</div>
</div>
<div class="contactform">
<h2> <i class="far fa-paper-plane"></i> Send Message</h2>
<form>
<div class="inputbox">
<span>Full Name</span>
<input type="text" name="" required="required">
</div>
<div class="inputbox">
<span>Email</span>
<input type="text" name="" required="required">
</div>
<div class="inputbox">
<span>Type Your Message here...</span>
<textarea required="required"></textarea>
</div>
<div class="inputbox">
<button>Send</button>
</div>
</form>
</div>
</section>
</body>
</html>