forked from sameersrivastava13/Vaccine-Tracker-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
186 lines (174 loc) · 5.95 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
184
185
186
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="static/images/fav.png" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Form</title>
<link rel="stylesheet" href="./static/css/contact.css" />
<link rel="stylesheet" href="static/style.css" />
<script
src="https://kit.fontawesome.com/64d58efce2.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="navbar">
<div class="logo">
<a href="index.html">
<div class="header-logo">
<a href="index.html"><img class="image" img src="static/images/favi.png"><div class="name">VACCINE TRACKER</div></a>
</div>
</a>
</div>
<nav>
<ul id="MenuItems">
<li><a href="index.html">Home</a></li>
<li><a href="https://www.news18.com/coronavirus-latest-news/" target="_blank">Latest News</a></li>
<li><a href="./contact.html">Contact</a></li>
<li>
<select name="" id="search" onchange="location = this.value;">
<option value="">Vaccine Tracker</option>
<option value="#pincode">Search By PINCODE</option>
<option value="#district">Search By District</option>
</select>
</li>
<li></li>
<li></li>
</ul>
</nav>
<img
src="static/img/menu.png"
alt=""
class="menu-icon"
onclick="menutoggle()"
/>
</div>
<div class="container">
<span class="big-circle"></span>
<img src="img/shape.png" class="square" alt="" />
<div class="form">
<div class="contact-info">
<h3 class="title">Let's get in touch</h3>
<p class="text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Saepe
dolorum adipisci recusandae praesentium dicta!
</p>
<div class="info">
<div class="information">
<img src="./static/img/location.png" class="icon" alt="" />
<p>92 Cherry Drive Uniondale, NY 11553</p>
</div>
<div class="information">
<img src="./static/img/email.png" class="icon" alt="" />
<p>[email protected]</p>
</div>
<div class="information">
<img src="./static/img/phone.png" class="icon" alt="" />
<p>123-456-789</p>
</div>
</div>
<div class="social-media">
<p>Connect with us :</p>
<div class="social-icons">
<a href="#">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#">
<i class="fab fa-twitter"></i>
</a>
<a href="#">
<i class="fab fa-instagram"></i>
</a>
<a href="#">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
<div class="contact-form">
<span class="circle one"></span>
<span class="circle two"></span>
<form action="index.html" autocomplete="off">
<h3 class="title">Contact us</h3>
<div class="input-container">
<input type="text" name="name" class="input" />
<label for="">Username</label>
<span>Username</span>
</div>
<div class="input-container">
<input type="email" name="email" class="input" />
<label for="">Email</label>
<span>Email</span>
</div>
<div class="input-container">
<input type="tel" name="phone" class="input" />
<label for="">Phone</label>
<span>Phone</span>
</div>
<div class="input-container textarea">
<textarea name="message" class="input"></textarea>
<label for="">Message</label>
<span>Message</span>
</div>
<input type="submit" value="Send" class="btn" />
</form>
</div>
</div>
</div>
<!-- Scroll Up Button -->
<button onclick="topFunction()" id="myBtn" title="Go to top">
<i class="fa fa-chevron-circle-up"></i>
</button>
<script>
var MenuItems = document.getElementById("MenuItems");
MenuItems.style.maxHeight = "0px";
function menutoggle() {
if (MenuItems.style.maxHeight == "0px") {
MenuItems.style.maxHeight = "200px";
} else {
MenuItems.style.maxHeight = "0px";
}
}
</script>
<!-- Script for Scroll Button -->
<script>
//Get the button
var mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction();
};
function scrollFunction() {
if (
document.body.scrollTop > 20 ||
document.documentElement.scrollTop > 20
) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTo({
top: 0,
behavior: "smooth",
});
}
</script>
<script src="./static/js/app.js"></script>
</body>
</html>