-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactus.html
More file actions
114 lines (96 loc) · 2.73 KB
/
contactus.html
File metadata and controls
114 lines (96 loc) · 2.73 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset ="utf-8">
<title></title>
<link rel="stylesheet " href="contactus.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="toggle.css">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
<style>
.topnav {
overflow: hidden;
}
.topnav a {
float: left;
display: block;
color: #eff0e6;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: rgb(38, 90, 95);
color: rgb(255, 255, 255);
}
.topnav a.active {
background-color: #e29b17;
color: white;
}
.topnav .icon {
display: none;
}
@media screen and (max-width: 415px) {
.topnav a:not(:first-child) {display: none;}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 415px) {
.topnav.responsive {position: relative;}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
}
h1 {
font-size: 45px;
}
</style>
</head>
<body background="images/modes/light2.jpg">
<div class="topnav" id="myTopnav">
<a href="index.html" >Home</a>
<a href="contactus.html" class="active">Contact Us</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<script src="script.js"></script>
<div class="contact-section">
<div class="wrapper">
<h2>Contact us</h2>
<div id="error_message">
</div>
<form action="https://formsubmit.co/junankgg@gmail.com" id="myform" onsubmit = "return validate();" method="POST" />
<input type="hidden" name="_captcha" value="false">
<div class="input_field">
<input name="name" type="text" placeholder="Name" id="name" required>
</div>
<div class="input_field">
<input name="email" type="text" placeholder="Email" id="email" required>
</div>
<div class="input_field">
<textarea placeholder="Message" id="message" name="message" required></textarea>
</div>
<div class="btn">
<input type="submit">
<input type="hidden" name="_next" value="https://amuejunankar.github.io/WeatherCast/contactus.html">
</div>
</form>
</div>
<script src="script.js"></script>
</body>
</html>