-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcontact.html
103 lines (100 loc) · 3.53 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<title>Happy Birthday Khwaahish</title>
<!-- <link rel="icon" type="image/x-icon" href="icon.png"> -->
<link rel="shortcut icon" href="assets/icon.png" type="image/x-icon" />
<link rel="stylesheet" href="styles.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<link rel="icon" type="image/x-icon" href="assets/icon.png" />
</head>
<body>
<div class="header-tab">
<a href="#default" class="logo"><img src="./assets/icon.png" alt="" /></a>
<div class="header-right">
<a href="index.html">Home</a>
<a class="active" href="contact.html">Contact</a>
<a href="about.html">About</a>
</div>
<a class="donate-btn" href="https://www.khwaahish.in/donate/"
>Donate 🤍</a
>
</div>
<main>
<form onsubmit="">
<div class="mt-5">
<form>
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input
type="text"
class="form-control"
id="name"
aria-describedby="name"
pattern="^[A-Za-z ]+$"
required
/>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label"
>Email</label
>
<input
type="email"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
required
/>
<div id="emailHelp" class="form-text">
We'll never share your email with anyone else.
</div>
</div>
<div class="mb-3">
<label for="messageId" class="form-label">Message</label>
<textarea
class="form-control"
style="resize: none"
rows="5"
id="messageId"
></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</form>
<div class="mt-5">
<div style="text-align: center; float: left">
<h3>Main Office</h3>
<iframe
src="https://www.google.com/maps/embed?pb=!1m13!1m8!1m3!1d27859.18877709834!2d78.964063!3d29.211828000000004!3m2!1i1024!2i768!4f13.1!3m2!1m1!2zMjnCsDEyJzQyLjYiTiA3OMKwNTcnNTAuNiJF!5e0!3m2!1sen!2sus!4v1696355101159!5m2!1sen!2sus"
width="600"
height="300"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
</div>
<div style="text-align: center; float: right">
<h3>Vocational Center</h3>
<iframe
src="https://www.google.com/maps/embed?pb=!1m13!1m8!1m3!1d55725.8542544308!2d78.981003!3d29.198075!3m2!1i1024!2i768!4f13.1!3m2!1m1!2zMjnCsDExJzUzLjEiTiA3OMKwNTgnNTEuNiJF!5e0!3m2!1sen!2sus!4v1696355328105!5m2!1sen!2sus"
width="600"
height="300"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
</div>
</div>
</main>
<script src="main.js"></script>
</body>
</html>