-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
191 lines (107 loc) · 6.09 KB
/
index.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
187
188
189
190
191
<!doctype html>
<html lang="en">
<head>
<!-- META -->
<meta charset="utf-8">
<meta name="robots" content="noodp">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- PAGE TITLE -->
<title>Garkooyeh land</title>
<!-- FAVICON -->
<link rel="shortcut icon" href="assets/img/favicon.png">
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700&subset=latin-ext" rel="stylesheet">
<!-- STYLESHEETS -->
<link rel="stylesheet" type="text/css" href="assets/css/plugins.css">
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
</head>
<body>
<!-- PRELOADER -->
<div class="preloader">
<!-- SPINNER -->
<div class="spinner">
<div class="bounce-1"></div>
<div class="bounce-2"></div>
<div class="bounce-3"></div>
</div>
<!-- /SPINNER -->
</div>
<!-- /PRELOADER -->
<!-- HERO -->
<div class="hero">
<!-- FRONT CONTENT -->
<div class="front-content">
<!-- CONTAINER MID -->
<div class="container-mid">
<!-- ANIMATION CONTAINER -->
<div class="animation-container animation-fade-down" data-animation-delay="0">
<img class="img-responsive logo" src="assets/img/logo.png" alt="image">
</div>
<!-- /ANIMATION CONTAINER -->
<!-- ANIMATION CONTAINER -->
<div class="animation-container animation-fade-right" data-animation-delay="300">
<h1>Garkooyeh</h1>
</div>
<!-- /ANIMATION CONTAINER -->
<!-- ANIMATION CONTAINER -->
<div class="animation-container animation-fade-left" data-animation-delay="600">
<p class="subline">We are working on our new website. Join our newsletter and get notifed.</p>
</div>
<!-- /ANIMATION CONTAINER -->
<!-- ANIMATION CONTAINER -->
<div class="animation-container animation-fade-up" data-animation-delay="900">
<div class="open-popup">Notify Me</div>
</div>
<!-- /ANIMATION CONTAINER -->
</div>
<!-- /CONTAINER MID -->
<!-- FOOTER -->
<div class="footer">
<!-- ANIMATION CONTAINER -->
<div class="animation-container animation-fade-up" data-animation-delay="1200">
<p>© 2022 GARKOOYEH LAND | Designed by <a href="https://micropedia.github.io/">Micropedia</a></p>
</div>
<!-- /ANIMATION CONTAINER -->
</div>
<!-- /FOOTER -->
</div>
<!-- /FRONT CONTENT -->
<!-- BACKGROUND CONTENT -->
<div class="background-content parallax-on">
<div class="background-overlay"></div>
<div class="background-img layer" data-depth="0.05"></div>
</div>
<!-- /BACKGROUND CONTENT -->
</div>
<!-- /HERO -->
<!-- POPUP ( SUBSCRIBE ) -->
<div class="popup">
<!-- CARD -->
<div class="card">
<!-- CARD CLOSE BUTTON -->
<div class="close-popup close-button"></div>
<i class="fa fa-envelope-o" aria-hidden="true"></i>
<h3>Sign Up</h3>
<p class="subline">Signing up to our newsletter gives you exclusive access to our Website Launch!</p>
<!-- FORM -->
<form action="assets/php/subscribe.php" method="post" class="subscribe-form">
<input type="text" name="email" placeholder="* Enter your Email" onfocus="this.placeholder = ''" onblur="this.placeholder = '* Enter your Email'" class="email form-control">
<!-- PHANTOM ELEMENT ( HONEYPOT CAPTCHA FOR SECURITY ) DO NOT REMOVE -->
<div class="fhp-input"><input type="text" name="phone" placeholder="* Enter your phone to Subscribe!" class="email form-control"></div>
<!-- /PHANTOM ELEMENT ( HONEYPOT CAPTCHA FOR SECURITY ) DO NOT REMOVE -->
<button type="submit" class="btn btn-primary form-control">Subscribe<i class="fa fa-long-arrow-right" aria-hidden="true"></i></button>
<!-- SUCCESS-ERROR MESSAGE -->
<div class="error-message">* Enter a valid Email Address!</div>
<div class="success-message">* Successfuly Subscribed!</div>
<!-- /SUCCESS-ERROR MESSAGE -->
</form>
<!-- /FORM -->
</div>
<!-- /CARD -->
</div>
<!-- /POPUP ( SUBSCRIBE ) -->
<!-- JAVASCRIPTS -->
<script type="text/javascript" src="assets/js/plugins.js"></script>
<script type="text/javascript" src="assets/js/main.js"></script>
</body>
</html>