-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathcontact.html
183 lines (137 loc) · 5.86 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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!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/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700"
rel="stylesheet"
/>
<link id="pagestyle" href="styles/style1.css" rel="stylesheet" />
<link href="./css/loader.css" rel="stylesheet" />
<link href="./css/contact-us.css" rel="stylesheet" />
<link href="./css/togglebtn.css" rel="stylesheet" />
<link href="./css/hamburger.css" rel="stylesheet" />
<link href="./css/preloader.css" rel="stylesheet" />
<!-- scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="./js/script.js"defer></script>
<script src="./js/togglebtn.js"defer></script>
<script src="./js/hamburger.js"defer></script>
<script src="./js/haptics.js"defer></script>
<!-- Icons -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<title>Contact Us</title>
</head>
<body>
<!-- Navbar Starts here -->
<!--
<body onload="initHaptics()">
<div class="preloader">
<div class="ring"></div>
<span>loading...</span>
</div> -->
<!-- <div class="toggle-container">
<input id="switch" type="checkbox" name="theme" />
<label class="toggleLabel" for="switch">
<i class="bi bi-brightness-high-fill sun"></i>
<i class="bi bi-moon-fill moon"></i>
</label>
</div> -->
<div class="button mode form-check form-switch me-2">
<input
class="form-check-input py-2 px-3"
type="checkbox"
id="checkbox"
name="darkmode"
data-bs-toggle="tooltip"
title="Toggle Dark Mode"
/>
</div>
<section class="hamburger-menu">
<div class="hamburger-icon" id="iconid">
<div class="icon-1" id="a"></div>
<div class="icon-2" id="b"></div>
<div class="icon-3" id="c"></div>
<div class="clear"></div>
</div>
<nav class="ham-nav" id="ham-nav">
<ul class="ham-nav-ul display-min">
<a href="index.html" onclick="https://elvinpero.github.io/PriceTemplate/">Home</a>
<br />
<a href="index.html" onclick="closeSlideMenu()">Prices</a
><br />
<a href="index.html#about-us" onclick="closeSlideMenu()">About</a
><br />
<a href="https://github.com/ElvinPero/PriceTemplate" target="_blank"
><button id="lets-talk" class="lets-talk"><i class="bi bi-github"></i> Repository</button></a
>
</ul>
</nav>
<div class="bg-color" id="bg-color"></div>
</section>
<!-- Navbar Ends here -->
<div class="container heading">
<!-- <h1 class="text-center font-weight-bold text-capitalize">Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Cras egestas magna at.</h1> -->
<h1 class="text-center font-weight-bold text-capitalize animate__fadeInDownBig animate__slow">Contact Us</h1>
<p class="text-center font-weight-normal mt-4">
For any queries regarding templates ,contact us!
</p>
</div>
<!-- form -->
<!-- <div class="container mt-5">
<div class="container p-4 rounded-lg formbg"> -->
<div class="container mt-5">
<div class="container p-4 rounded-lg formbg col-5">
<div class="row g-2">
<!-- First Name -->
<div class="col-md">
<div class="form-floating">
<input type="text" class="form-control" id="floatingInputGrid" placeholder="John" value="">
<label for="floatingInputGrid">First Name</label>
</div>
</div>
<!-- Last Name -->
<div class="col-md">
<div class="form-floating">
<input type="text" class="form-control" id="floatingInputGrid" placeholder="Doe" value="">
<label for="floatingSelectGrid">Last Name</label>
</div>
</div>
</div>
<!-- Email Id -->
<form class="form-floating">
<input type="email" class="form-control mt-4 " id="floatingInput" placeholder="[email protected]" value="">
<label for="floatingInputInvalid">Email Id</label>
</form>
<!-- Message -->
<div class="form-floating mt-4">
<textarea class="form-control" placeholder="Leave a comment here" id="floatingTextarea"></textarea>
<label for="floatingTextarea">Message</label>
</div>
<div class="text-center form-floating mt-4">
<button type="submit" class="btn btn-dark btn-lg">Submit</button>
</div>
</div>
</div>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<script src="./js/preloader.js"></script>
</body>
</html>