-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
418 lines (391 loc) · 24.1 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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Steam Inc.</title>
<link rel="icon" href="css/assets/icon.png" type="image/x-icon">
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet'>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel='stylesheet'>
<link href='css/bootstrap.css' rel='stylesheet' />
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection" />
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection" />
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script>
// enable the visual refresh
google.maps.visualRefresh = true;
var map;
function initialize() {
var mapOptions = {
zoom: 15,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
// try HTML5 geolocation
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var pos = new google.maps.LatLng(position.coords.latitude,
position.coords.longitude);
var infowindow = new google.maps.InfoWindow({
map: map,
position: pos,
content: '10 freelancers are available near your location!'
});
map.setCenter(pos);
}, function() {
handleNoGeolocation(true);
});
} else {
// browser doesn't support geolocation
handleNoGeolocation(false);
}
}
function handleNoGeolocation(errorFlag) {
if (errorFlag) {
var content = 'Error: The Geolocation service failed.';
} else {
var content = 'Error: Your browser doesn\'t support geolocation.';
}
var options = {
map: map,
position: new google.maps.LatLng(60, 105),
content: content
};
var infowindow = new google.maps.InfoWindow(options);
map.setCenter(options.position);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
</head>
<body>
<nav class="white" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="" class="brand-logo"><img src="css/assets/testings.png" style="padding-top:4px"></a>
<ul class="right hide-on-med-and-down tabs-fixed-width">
<li><a class="test" href="#" style="font-family:Montserrat;">How it Works</a></li>
<li><a class="test" href="#" style="font-family:Montserrat;">Post A Project</a></li>
<li><a class="test" href="#" style="font-family:Montserrat;">Community</a></li>
<li><a class="test" href="#" style="font-family:Montserrat;">FAQ Section</a></li>
</ul>
<ul id="nav-mobile" class="sidenav">
<li><a href="#" style="font-family:Montserrat;">How it Works</a></li>
<li><a href="#" style="font-family:Montserrat;">Post A Project</a></li>
<li><a href="#" style="font-family:Montserrat;">Community</a></li>
<li><a href="#" style="font-family:Montserrat;">FAQ Section</a></li>
</ul>
<a href="#" data-target="nav-mobile" class="sidenav-trigger"><i class="material-icons">menu</i></a>
</div>
</nav>
<div class="fixed-action-btn">
<a id="mybtn" class="btn-floating btn-large red pulse">
<i class="large material-icons tooltipped" data-position="left" data-tooltip="Contact Us">send</i>
</a>
<ul>
<li><a class="btn-floating red tooltipped" data-position="left" data-tooltip="Quick Feedback"><i
class="material-icons">thumbs_up_down</i></a></li>
<li><a class="btn-floating green tooltipped" data-position="left" data-tooltip="Upload An Issue"><i
class="material-icons">attach_file</i></a></li>
</ul>
</div>
<!-- Tap Target Structure -->
<div class="tap-target red" data-activates="mybtn">
<div class="tap-target-content">
<h5 style="font-weight: 500; font-family:Montserrat; text-align: right">We are here for you!</h5>
<p style="font-weight: 500; font-family:Montserrat;">You can connect with us 24*7 if you have an issue or you want to share something with us!</p>
<a href="#!" onclick="$('.tap-target').tapTarget('close')" style="font-weight: 500; font-family:Montserrat;">Dismiss</a>
</div>
</div>
<div id="index-banner" class="parallax-container">
<div class="section no-pad-bot">
<div class="container">
<br><br>
<div class="tp-caption header center teal-text" style="font-size: 50px; line-height: 46px; font-weight: 700; font-family:Montserrat; padding-top: 10%">
HIRE OR GET HIRED ONLINE!</div>
<div class="row center">
<h5 class="header col s12 light" style="font-weight: 400; font-family:Montserrat;">Find trusted Freelancers and Freelance jobs easily!</h5>
</div>
<div class="row center">
<a href="register.html" id="download-button" class="btn-large waves-effect waves-light teal lighten-1 z-depth-5" style="margin-right: 2%; font-family:Montserrat; margin-top: 2%; margin-bottom:2%;">Go Freelancing</a><a href="hire.html" id="download-button" class="btn-large waves-effect waves-light transparent lighten-1 z-depth-5" style="border:1px solid grey; font-family:Montserrat;">Hire Talent</a>
</div>
<br><br>
</div>
</div>
<div class="parallax"><img src="css/assets/background1.jpg" alt="Unsplashed background img 1" style="width: 20%"></div>
</div>
<br>
<div class="container">
<div class="section">
<!-- Icon Section -->
<div class="row">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center"><img src="css/assets/image1.png" style="max-height: 10%; max-width: 50%;">
</h2>
<h5 class="center" style="font-family:Montserrat; font-weight: 800;">Freelancers By Skills</h5>
<p class="light center" style="font-family:Montserrat;">To remain competitive, freelancers should constantly look into expanding and upgrading their skills. We hire them as freelancers and shortlist the best of them for the organizations.</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center teal-text"><img src="css/assets/image2.png" style="max-height: 10%; max-width: 50%;"></h2>
<h5 class="center" style="font-family:Montserrat; font-weight: 800;">Best Clients Guaranteed
</h5>
<p class="light center" style="font-family:Montserrat;">Find great place to work. Best work and life balance, amazing benifits, amazing people and most importantly a people-first focused company.
</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center brown-text"><img src="css/assets/image3.png" style="max-height: 10%; max-width: 50%;"></h2>
<h5 class="center" style="font-family:Montserrat; font-weight: 800;">Streamlined Hiring</h5>
<p class="light center" style="font-family:Montserrat;">Getting hired as freelancers has never been easier. "Steam Inc." really helped streamline the hiring process. We follow simpler & effective working methods to manage freelancers.</p>
</div>
</div>
</div>
</div>
</div>
<div class="parallax-container valign-wrapper">
<div class="section no-pad-bot">
<div class="container">
<div class="row center">
<h5 class="header col s12 light" style="font-weight: 400; font-family:Montserrat;">“Change how you're paid, change your life.”</h5>
<h6 style="font-family:Montserrat;">― Richie Norton</h6>
</div>
</div>
</div>
<div class="parallax"><img src="css/assets/background5.jpg" alt="Unsplashed background img 2" style="width: 20%"></div>
</div>
<div class="container">
<div class="section">
<div class="row">
<div class="col s12 center">
<h3><i class="mdi-content-send brown-text"></i></h3>
<h4 style="font-family:Montserrat;">Make Things Happen!</h4>
<div id="map-canvas"></div>
<p style="font-family:Montserrat;">We shortlist the quality freelancers to increase the efficiency of your organization on the basis of your skill requirements nearby you. Not only this, we streamlined the process for smooth hiring. Only pay for what you want with secure
billings and invoices. Hire the best freelancers according to your needs. What's in if for freelancers? Well, we help them to work with best organizations, great people and even provide provide them various benifits. Get shortlisted
on the basis of your skills and get paid!</p>
</div>
</div>
</div>
</div>
<h5 style="font-family: Montserrat; margin-left: 4%;">Reviews By Freelancers:</h5>
<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="col-md-4 col-sm-6">
<div class="card-container z-depth-5">
<div class="card">
<div class="front">
<div class="cover">
<img src="css/assets/rotating_card_thumb2.png" />
</div>
<div class="user">
<img class="img-circle" src="css/assets/person.png" />
</div>
<div class="content">
<div class="main">
<h4 class="name" style="font-family:Montserrat; font-weight: 500;">Shubham</h4>
<p class="profession" style="font-family:Montserrat; font-weight: 500;">Web Developer(Node.js)
</p>
<p class="text-center" style="font-family:Montserrat; font-weight: 500; line-height: 1.5;">"It was a great experience to work with "Steam Inc.". They provide a common platform for the freelancers and organizations. Making the whole process simple and streamlined."
</p>
</div>
</div>
</div>
<!-- end front panel -->
<div class="back">
<div class="content">
<div class="main"><br><br>
<h5 class="text-center" style="font-family:Montserrat; font-weight: 800;">Web Developer
</h5><br>
<p class="text-center" style="font-family:Montserrat; font-weight: 500;">Worked On: Node.js, React.js</p>
<br><br>
<div class="stats-container">
<p style="font-family:Montserrat; font-weight: 800;">Stats:</p>
<div class="stats">
<h5 style="font-family:Montserrat; font-weight: 500;">400+</h5>
<p style="font-family:Montserrat; font-weight: 500;">Commits</p>
</div>
<div class="stats">
<h5 style="font-family:Montserrat; font-weight: 500;">160+</h5>
<p style="font-family:Montserrat; font-weight: 500; line-height: 1.5;">Pull Requests</p>
</div>
<div class="stats">
<h5 style="font-family:Montserrat; font-weight: 500;">10+</h5>
<p style="font-family:Montserrat; font-weight: 500; line-height: 1.5;">Client Projects</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card-container z-depth-5">
<div class="card">
<div class="front">
<div class="cover">
<img src="css/assets/rotating_card_thumb2.png" />
</div>
<div class="user">
<img class="img-circle" src="css/assets/person1.png" />
</div>
<div class="content">
<div class="main">
<h4 class="name" style="font-family:Montserrat; font-weight: 500;">Shreeyanshi</h4>
<p class="profession" style="font-family:Montserrat; font-weight: 500;">Front-End Developer(Material CSS)
</p>
<p class="text-center" style="font-family:Montserrat; font-weight: 500; line-height: 1.5;">"You guys are awesome! I never believed that I can work for 2-4hrs and get paid too. And the clients you provide are great. Thank you "Steam Inc."."
</p>
</div>
</div>
</div>
<!-- end front panel -->
<div class="back">
<div class="content">
<div class="main"><br><br>
<h5 class="text-center" style="font-family:Montserrat; font-weight: 800;">Front-End Developer
</h5><br>
<p class="text-center" style="font-family:Montserrat; font-weight: 500; line-height:1.5;">Worked On: HTML, CSS, Bootstrap, Javascript, MaterialCSS</p>
<br><br>
<div class="stats-container">
<p style="font-family:Montserrat; font-weight: 800;">Stats:</p>
<div class="stats">
<h5 style="font-family:Montserrat; font-weight: 500;">250+</h5>
<p style="font-family:Montserrat; font-weight: 500;">Commits</p>
</div>
<div class="stats">
<h5 style="font-family:Montserrat; font-weight: 500;">80+</h5>
<p style="font-family:Montserrat; font-weight: 500; line-height: 1.5;">Pull Requests</p>
</div>
<div class="stats">
<h5 style="font-family:Montserrat; font-weight: 500;">5+</h5>
<p style="font-family:Montserrat; font-weight: 500; line-height: 1.5;">Client Projects</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="card-container z-depth-5">
<div class="card">
<div class="front">
<div class="cover">
<img src="css/assets/rotating_card_thumb2.png" />
</div>
<div class="user">
<img class="img-circle" src="css/assets/person.png" />
</div>
<div class="content">
<div class="main">
<h4 class="name" style="font-family:Montserrat; font-weight: 500;">Ritwick</h4>
<p class="profession" style="font-family:Montserrat; font-weight: 500;">UI Designer
</p>
<p class="text-center" style="font-family:Montserrat; font-weight: 500; line-height: 1.5;">"Well,I joined them few days back and I got an instant connection request from client. I get a descent payment for my skills as well as I have made a few good connections."
</p>
</div>
</div>
</div>
<!-- end front panel -->
<div class="back">
<div class="content">
<div class="main"><br><br>
<h5 class="text-center" style="font-family:Montserrat; font-weight: 800;">UI Designer
</h5><br>
<p class="text-center" style="font-family:Montserrat; font-weight: 500;">Worked On: AdobeXD, Figma</p>
<br><br>
<div class="stats-container">
<p style="font-family:Montserrat; font-weight: 800;">Stats:</p>
<div class="stats">
<h5 style="font-family:Montserrat; font-weight: 500;">100+</h5>
<p style="font-family:Montserrat; font-weight: 500;">Commits</p>
</div>
<div class="stats">
<h5 style="font-family:Montserrat; font-weight: 500;">50+</h5>
<p style="font-family:Montserrat; font-weight: 500; line-height: 1.5;">Pull Requests</p>
</div>
<div class="stats">
<h5 style="font-family:Montserrat; font-weight: 500;">2+</h5>
<p style="font-family:Montserrat; font-weight: 500; line-height: 1.5;">Client Projects</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end row -->
</div>
</div>
<div class="parallax-container valign-wrapper">
<div class="section no-pad-bot">
<div class="container">
<div class="row center">
<h5 class="header col s12 light" style="font-weight: 400; font-family:Montserrat;">"Work as a freelancer, because life is too short to work in a cubicle."</h5>
</div>
</div>
</div>
<div class="parallax"><img src="css/assets/background10.jpg" alt="Unsplashed background img 3" style="width: 20%"></div>
</div>
<footer class="page-footer teal" style="padding-top: 10px;">
<div class="container">
<div class="row">
<h5 class="white-text">Contact Us:
<a href="https://www.facebook.com/wearestream"><i class="fa fa-facebook" aria-hidden="true"
style="font: normal normal normal 20px/1 FontAwesome; margin-right: 2%; color: white; margin-left: 4%"></i></a>
<a href="https://twitter.com/wearestream1"><i class="fa fa-twitter" aria-hidden="true"
style="font: normal normal normal 20px/1 FontAwesome; margin-right: 2%; color: white"></i></a>
<a href="https://www.linkedin.com/company/stream-digital-services/about/"><i class="fa fa-linkedin"
aria-hidden="true"
style="font: normal normal normal 20px/1 FontAwesome; margin-right: 2%; color: white"></i></a>
<a href="https://plus.google.com/u/0/106816843941812636489"><i class="fa fa-google-plus"
aria-hidden="true"
style="font: normal normal normal 20px/1 FontAwesome; color: white"></i></a></h5>
</div>
</div>
<div class="footer-copyright center">
<div class="container">
© Made by: <a class="brown-text text-lighten-4" href="http://github.com/shrynshigupta06">Shreeyanshi Gupta</a>
</div>
</div>
</footer>
<!-- Scripts-->
<script src="js/bootstrap.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script type="text/javascript">
$().ready(function() {
$('[rel="tooltip"]').tooltip();
});
function rotateCard(btn) {
var $card = $(btn).closest('.card-container');
console.log($card);
if ($card.hasClass('hover')) {
$card.removeClass('hover');
} else {
$card.addClass('hover');
}
}
</script>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/js/materialize.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>