-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact bootstrap.html
169 lines (162 loc) · 4.76 KB
/
contact bootstrap.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
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
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width,
initial-scale=1.0">
<title>Feedback Form with map</title>
<link rel="stylesheet"
href="index.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-image:
linear-gradient(120deg, #caeff2 0%, #a2c2ee 100%);
}
.ffbox {
display: flex;
width: 80%;
max-width: 800px;
background-color: #fff;
border: 3px solid #e4e4e9;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
border-radius: 10px;
flex-wrap: wrap;
}
.ffbox1 {
flex: 1;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.ffbox1 label {
display: block;
margin-bottom: 8px;
}
.ffbox1 input,
.ffbox1 textarea {
width: 100%;
padding: 8px;
margin-bottom: 16px;
box-sizing: border-box;
border-radius: 15px;
background-color: #dcdce1;
border: none;
}
.ffbox1 textarea {
resize: vertical;
}
.ffbox1 {
margin-bottom: 16px;
}
.ffbox1 label {
margin-right: 16px;
}
.map-div {
flex: 1;
background-color: #eee;
}
button {
width: 100%;
padding: 8px;
margin-bottom: 16px;
box-sizing: border-box;
border-radius: 15px;
background-color: rgb(105, 152, 111);
color: rgb(183, 213, 179);
font-size: 17px;
font-weight: 700;
border: #a2c2ee;
}
button:hover {
background-color: rgb(52, 98, 58);
}
.map-div iframe {
border: 0;
padding: 10px;
}
.gfg {
text-align: center;
color: green;
}
.map-div {
background-color: rgb(152, 178, 234);
}
</style>
</head>
<body>
<div class="ffbox">
<div class="ffbox1">
<h1 class="gfg">GET IN TOUCH</h1>
<h2>Contact Us</h2>
<form>
<label for="fullName">
<i class="fa fa-solid fa-user"
style="margin: 2px;">
</i> Full Name:
</label>
<input type="text"
id="fullName"
name="fullName" required>
<label for="email">
<i class="fa fa-solid fa-envelope"
style="margin: 2px;">
</i>
Email Address:
</label>
<input type="email"
id="email"
name="email" required>
<label for="mobile">
<i class=" fa fa-solid fa-phone"
style="margin: 2px;">
</i>
Contact No:
</label>
<input type="tel"
id="mobile"
name="mobile" required>
<label for="msg">
<i class=" fa fa-solid fa-comment"
style="margin: 2px;">
</i>
Write Message:
</label>
<textarea id="msg"
name="msg"
rows="5" required>
</textarea>
<button type="submit">
Submit
</button>
<footer>
<button type="submit" data-mdb-button-init data-mdb-ripple-init class="btn btn-warning btn-block mb-4">
<a href="index.html">Back</a>
</footer>
</form>
</div>
<div class="map-div">
<iframe src="https://maps.google.com/maps?width=523&height=403&hl=en&q=Stockholm%20Science%20&%20Innovation%20Schoo%20Stockholm%20+()&t=&z=12&ie=UTF8&iwloc=B&output=embed"
width="370"
height="95%"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</div>
</div>
</body>
</html>