-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
164 lines (146 loc) · 5.17 KB
/
contactus.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
<!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" />
<meta content="" name="description" />
<meta content="" name="keywords" />
<title>Menses</title>
<!--Favicon Icom-->
<link rel="icon" type="image/x-icon" href="assets/favicon-icon.png">
<!--Bootstrap Custom CSS-->
<link rel="stylesheet" href="./dist/css/main.css" crossorigin="anonymous" />
<!--Custom CSS-->
<link rel="stylesheet" type="text/css" href="mystyle.css" />
<!--icon-->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ"
crossorigin="anonymous"
/>
<!--Bootstrap Icon-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css"
/>
<!--Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="spinnerContainer" id="loader">
<div class="spinner">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo"><a href="index.html">Menses</a></h1>
<nav id="navbar" class="navbar">
<ul>
<li>
<a class="nav-link scrollto active" href="main.html"
><i class="bi bi-house-door"></i> Home</a
>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-sm-12 py-5 text-center">
<h1><strong>Get In Touch</strong></h1>
</div>
</div>
</div>
</section>
<section class="d-flex justify-content-center" id="contactusDetail">
<div class="container">
<div class="row">
<div class="col-sm-12">
<form
class="d-flex justify-content-center flex-column align-items-center"
>
<div class="mb-4 w-75 form-group">
<label for="name">Your Name:</label>
<input
type="text"
class="form-control"
placeholder="Enter Name"
id="name"
required
/>
</div>
<div class="mb-4 w-75 form-group">
<label for="comment">Message:</label>
<textarea
id="msg"
class="form-control"
rows="10"
id="comment"
placeholder="Enter Your Message Here..."
></textarea>
</div>
<div class="text-left mb-4">
<button id="emailBtn" class="btn btn-teal" onclick="openPopup()">Submit</button>
</div>
<!--Popuo code-->
<!-- <div class="popup" id="popup">
<img src="assets/success.png" alt="click here">
<h2>Thank You!</h2>
<p>Your email has been sent successfully.</p>
<button class="btn btn-teal" type="button" onclick="myPopup()">OK</button>
</div> -->
<!--Popuo code ends here-->
</form>
</div>
</div>
</div>
</section>
<script src="email.js"></script>
<!--Email Intergration JS-->
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"
></script>
<script type="text/javascript">
(function () {
emailjs.init("OBKIOPvuxOt1QHuO6");
})();
</script>
<!--Bootstrap JQuery and Javascript-->
<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>
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"
crossorigin="anonymous"
></script>
<script src="./dist/js/loader.js"></script>
</body>
</html>