-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
161 lines (125 loc) · 4.38 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
<!DOCTYPE html>
<html>
<head>
<title>Deep Impact</title>
<meta charset="UTF-8">
<meta name="author" content="Wentworth">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="origin">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="CSS/common.css">
<link rel="stylesheet" type="text/css" href="CSS/footer.css">
<link rel="stylesheet" type="text/css" href="CSS/Upper.css">
<link rel="stylesheet" type="text/css" href="CSS/contact.css">
<link rel="stylesheet" type="text/css" href="CSS/nav.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="JS/loader.js"></script>
</head>
<body>
<div class="loader"></div>
<div class="navy">
<div class="toggle">
<div class="bars"></div>
</div>
</div>
<div class="con">
<div class="side"></div>
<div class="black">
<div class="bottom">
<div class="menu">
<a href="index.html"><div class="btext animated b1">HOME</div></a>
<a href="courses.html"><div class="btext animated b2">VIDEO LIBRARY</div></a>
<a href="pages/index.html"><div class="btext animated b3">WOMEN EMPOWERMENT</div></a>
<a href="about.html"><div class="btext animated b4">ABOUT US</div></a>
<a href="recommend.html"><div class="btext animated b5">RECOMMEND US</div></a>
<a href="testimonial.html"><div class="btext animated b6">TESTIMONIALS</div></a>
<div class="btext animated b7 curr">CONTACT US</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
x = $(".side");
y = $(".black");
z = $(".btext");
a = 1;
$(".navy").click(function () {
if(a==1){
$(".con").css({"z-index":"9000000"});
x.css({"width":"100%", "height":"100%"})
setTimeout(function() {
x.css({"transform":"scale(1.4)"})
}, 500);
setTimeout(function() {
x.css({"transform":"scale(11)"})
}, 1000);
setTimeout(function() {
y.css({"width":"200%", "height":"200%",visibility:"visible"})
}, 1300);
setTimeout(function() {
z.removeClass("fadeOutDown")
z.addClass("fadeInUp")
}, 1900);
a=0;
}else{
z.removeClass("fadeInUp")
z.addClass("fadeOutDown")
setTimeout(function() {
y.css({"width":"0%", "height":"0%",visibility:"0"})
}, 1400);
setTimeout(function() {
x.css({"transform":"scale(11)"})
}, 1800);
setTimeout(function() {
x.css({"width":"0%", "height":"0%"})
$(".con").css({"z-index":"0"});
}, 2800);
setTimeout(function() {
x.css({"transform":"scale(1.7)"})
}, 3000);
a=1;
}
})
</script>
<div class="section1">
<img src="ICONS/logo_white.png">
<h1>Contact Us</h1>
</div>
<div class="section2">
<div class="form">
<form method="POST" action="http://formspree.io/[email protected]">
<input type="text" name="name" required placeholder="Your First Name">
<input type="text" name="name" required placeholder="Your Last Name">
<input type="email" name="email" required placeholder="Your Email Address">
<input type="tel" name="num" required placeholder="Your Phone Number">
<textarea placeholder="Enter the message"></textarea>
<button>SUBMIT</button>
</form>
</div>
<div class="info">
<h2>Write Us</h2>
<p>[email protected]</p>
<h2>Call Us</h2>
<p>+91 9814142008</p>
<h2>Follow Us</h2>
<div class="contact">
<a href="https://www.facebook.com/deepimpct/"><div class="box" style="background:#3b5997"><img src="ICONS/fbW.png"></div></a>
<a href="https://www.linkedin.com/company/deepimpct/"><div class="box" style="background:#0077b5"><img src="ICONS/linkedinW.png"></div></a>
</div>
</div>
</div>
<div class="section3">
<p>© All Rights Reserved 2022</p>
</div>
<div class="section4">
<div class="mail"><a href="mailto:[email protected]">boss.dimpact<span>@gmail</span></a></div>
<div class="contact">
<a href="https://www.facebook.com/deepimpct/"><div class="box" style="background:#3b5997"><img src="ICONS/fbW.png"></div></a>
<a href="https://www.linkedin.com/company/deepimpct/"><div class="box" style="background:#0077b5"><img src="ICONS/linkedinW.png"></div></a>
<a href="tel:+919814142008"><div class="box" style="background:#1bb4ab"><img src="ICONS/call.png"></div></a>
</div>
<p>© All Rights Reserved 2022</p>
</div>
</body>
</html>