-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
145 lines (118 loc) · 5.65 KB
/
contact.html
File metadata and controls
145 lines (118 loc) · 5.65 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="images/codeadept-logo.png" type="png" sizes="30x30">
<title>Contact us!</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/css-hamburgers/hamburgers.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/contact-util.css">
<link rel="stylesheet" type="text/css" href="css/contact-main.css">
<!--===============================================================================================-->
</head>
<body>
<div class="bg-contact100" style="background-image: url('images/services-bg.jpg');">
<div class="container-contact100">
<div class="wrap-contact100">
<div>
<div class="contact100-pic js-tilt" data-tilt>
<h1 class="contact-h1-1" style="color: black">
<b>
Contact/WhatsApp -</b>
</h1><br>
<p class="contact-p-1">
Nitesh Jain <span style="color
: #318a51"><b> +91-7415609165</b></span><br>
Harshika Shrivastav <span style="color
: #318a51"><b> +91-9584291330</b><br></span>
Himanshu Soni <span style="color
: #318a51"><b> +91-7509250831</b><br></span>
Kanika Gupta <span style="color
: #318a51"><b> +91-9630665688</b><br></span>
Narendra Dev Arun <span style="color
: #318a51"><b> +91-8982124911</b><br></span>
Shubham Jha <span style="color
: #318a51"><b> +91-8770967529</b><br></span>
Shivang Agrawal <span style="color
: #318a51"><b> +91-8223863251</b><br>
<br>
<h1 class="contact-h1-1" style="color: black">
<b>
Mail/Facebook us -</b>
</h1><br>
<p class="contact-p-1">
<span style="color
: #318a51"><b> codeadept.DoIT@gmail.com</b></span><br>
<a href="https://www.facebook.com/DoIT.CodeAdept/"> <span style="color
: #318a51"><b> www.facebook.com/DoIT.CodeAdept</b></span><br></a>
</p>
</div></div>
<form action="feedback.php" class="contact100-form validate-form" method="POST">
<span class="contact100-form-title">
Feel free to send us feedback or ask any query-
</span>
<div class="wrap-input100 validate-input" data-validate = "Name is required">
<input class="input100" type="text" name="name" placeholder="Name" required>
<span class="focus-input100"></span>
<span class="symbol-input100">
<i class="fa fa-user" aria-hidden="true"></i>
</span>
</div>
<div class="wrap-input100 validate-input" data-validate = "Valid email is required: ex@abc.xyz">
<input class="input100" type="email" name="email" placeholder="Email" required>
<span class="focus-input100"></span>
<span class="symbol-input100">
<i class="fa fa-envelope" aria-hidden="true"></i>
</span>
</div>
<div class="wrap-input100 validate-input" data-validate = "Valid email is required: ex@abc.xyz">
<input class="input100" type="text" name="feedback" placeholder="feedback/Query" required>
<span class="focus-input100"></span>
<span class="symbol-input100">
</span>
</div>
<div class="container-contact100-form-btn">
<input type="submit" value="Send" class="contact100-form-btn">
</div>
</form>
</div>
</div>
</div>
<!--===============================================================================================-->
<script src="vendor/jquery/jquery-3.2.1.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/bootstrap/js/popper.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/select2/select2.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/tilt/tilt.jquery.min.js"></script>
<script >
$('.js-tilt').tilt({
scale: 1.1
})
</script>
<!--===============================================================================================-->
<script src="js/main.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-23581568-13"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-23581568-13');
</script>
</body>
</html>