-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
168 lines (146 loc) · 6.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jobsto</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/app/scss/style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-200662091-1">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-200662091-1');
</script>
</head>
<body>
<header class="header">
<div class="overlay has-fade"></div>
<nav class="container container--pall flex flex-jc-sb flex-ai-c">
<a href="/" class="header__logo">
<img src="images/jobsto_logo.png" alt="jobsto">
</a>
<a id="btnHamburger" href="#" class="header__toggle hide-for-desktop">
<span></span>
<span></span>
<span></span>
</a>
<div class="header__links hide-for-mobile">
<a href="#">Home</a>
<a href="#feature">About</a>
<a href="https://twitter.com/2hinRoy">Contact</a>
</div>
<a class="button header__cta hide-for-mobile" href="https://forms.gle/Wvx3Q4MMQnLAXYSq6"
target="_blank">Join Waitlist</a>
</nav>
<div class="header__menu has-fade">
<a href="#">Home</a>
<a id="about">About</a>
<a href="https://twitter.com/2hinRoy">Contact</a>
</div>
</header>
<section class="hero">
<div class="container">
<div class="hero__image"></div>
<div class="hero__text container--pall">
<h1>
Share your interview experiences
</h1>
<p>
Help job seekers get a taste of the interview by sharing your interview stories or read one from
others
to be better prepared for the interview in your dream company.
</p>
<a href="https://forms.gle/Wvx3Q4MMQnLAXYSq6" class="button hero__cta" target="_blank">Join
Waitlist</a>
</div>
</div>
</section>
<section class="feature" id="feature">
<div class="feature__content container container--pall">
<div class="feature__intro">
<h2>Why Jobsto for your interview preparation?</h2>
<p>
Jobsto will help you become more confident through its rich content of interview experiences shared
by
helpful peers
</p>
</div>
<div class="feature__grid">
<div class="feature__item">
<div class="feature__icon">
<img src="/images/icon-read.png" alt="" class="src">
</div>
<div class="feature__title">
Read Interview Experiences
</div>
<div class="feature__description">
You can filter the experiences based on company, title, location and other paramters
</div>
</div>
<div class="feature__item">
<div class="feature__icon">
<img src="/images/icon-write.png" alt="" class="src">
</div>
<div class="feature__title">
Write An Experience
</div>
<div class="feature__description">
Do good to other job seekers by writing an interview experience or sharing a video
</div>
</div>
<div class="feature__item">
<div class="feature__icon">
<img src="/images/icon-referral.png" alt="" class="src">
</div>
<div class="feature__title">
Ask For Referral
</div>
<div class="feature__description">
Seek out for referrals to people employed at your dream company
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<a href="#" class="footer__logo">
<img src="/images/jobsto_logo.png" alt="" class="src">
</a>
<div class="footer__social">
<a href="#" class="href">
<i class="fab fa-twitter-square"></i>
</a>
<a href="#" class="href">
<i class="fab fa-instagram-square"></i>
</a>
<a href="#" class="href">
<i class="fab fa-linkedin"></i>
</a>
</div>
<div class="footer__links col1">
<a href="#" class="hre">Home</a>
<a href="#feature" class="about">Features</a>
</div>
<div class="footer__links col2">
<a href="#" class="">Support</a>
<a href="https://tuhinroy.in" class="hre">Contact Us</a>
</div>
<div class="footer__cta">
<a href="https://forms.gle/Wvx3Q4MMQnLAXYSq6" class="button">Join Waitlist</a>
</div>
<div class="footer__copyright">
© 2021 Jobsto. All rights reserved.
</div>
</div>
</footer>
<script src="/app/js/script.js"></script>
<script src="https://kit.fontawesome.com/7845c0838c.js" crossorigin="anonymous"></script>
</body>
</html>