-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
719 lines (609 loc) · 31.5 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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
<!doctype html>
<html lang="en">
<head>
<title>Landing Page - Freecode Camp Challenge</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">-->
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!--<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
-->
<!-- <link rel="stylesheet" href="/RogueX-Computer-services/icon-font.css">-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" href="/RogueX-Computer-Services/css/landingpage.css" >
</head>
<body>
<div class="navigation">
<input type="checkbox" class="navigation__checkbox" id="navi-toggle">
<label for="navi-toggle" class="navigation__button">
<span class="navigation__icon">
</span>
</label>
<div class="navigation__background">
</div>
<nav class="navigation__nav">
<ul class="navigation__list">
<li class="navigation__item"><a href="#" class="navigation__link">ABOUT ROGUEX</a></li>
<li class="navigation__item"><a href="#" class="navigation__link">Products and SERVICES</a></li>
<li class="navigation__item"><a href="#" class="navigation__link">Contact Us</a></li>
<li class="navigation__item"><a href="#" class="navigation__link">Stories</a></li>
<li class="navigation__item"><a href="#" class="navigation__link">Reserve Now</a></li>
</ul>
</nav>
</div>
<header class="header">
<div id="particles-js"></div>
<div class="header__logo-box">
<img src="/RogueX-Computer-Services/image/logorx3.png" alt="logo" class="header__logo">
</div>
<!--<nav class="header__nav">
<ul class="header__navigation">
<li class="header__navigation--link"><a href="#about">About</a></li>
<li class="header__navigation--link"><a href="#product">Products</a></li>
<li class="header__navigation--link"><a href="#contact">Contact</a></li>
</ul>
</nav>
<div class="header__text-box">
<h1 class="heading-primary">
<span class="heading-primary--main">Rogue-X</span>
<span class="heading-primary--sub">Cyber Cafe</span>
</h1>
</div>
-->
<div class="header__text-box-heading-secondary">
<h2 class="heading-secondary">
<span class="heading-secondary--main">Computer Parts & Services </span>
</h2>
<!-- <span class="heading-secondary--sub">Your gaming experience is our game!!!</span>
<input class="search" type="search" placeholder="Search..">
<a href="#" class="btn btn--blue btn--animated">Search</a>
-->
</div>
</header>
<main>
<section class="section-about">
<!--heading format-->
<div class="u-center-text u-margin-bottom-big">
<h2 class="heading-about">
We provide you with the best gaming experience!!!
</h2>
</div>
<div class="row">
<div class="col-1-of-2">
<h3 class="heading-tertiary u-margin-bottom-small">
Ready to serve your professional and student needs.
</h3>
<p class="paragraph">Our goal is to provide our customers excellent gaming and
internet services.We also hope to enhance our customers knowledge with
current technology trends. Our main services also offers computer repair
and maintenance.
</p>
<h3 class="heading-tertiary u-margin-bottom-small">
Want to put up your own CYBER CAFE business?
</h3>
<p class="paragraph">We will help you setup your own Cyber Cafe and provide you with full support
and maintenance services.
</p>
<a href="#" class="btn-text">More Details →</a>
</div>
<div class="col-1-of-2">
<div class="composition">
<img srcset="/RogueX-Computer-Services/image/alexandru-bogdan-ghita-481900-unsplash.jpg 133w, /RogueX-Computer-Services/image/alexandru-bogdan-ghita-481900-unsplash.jpg 6000w"
sizes="(max-width: 900px) 15vw, (max-width: 600px) 27vw, 295vw"
alt="Unsplash_Photo1"
class="composition__photo composition__photo--p1"
src="/RogueX-Computer-Services/image/alexandru-bogdan-ghita-481900-unsplash.jpg">
<img srcset="/RogueX-Computer-Services/image/aidan-granberry-630661-unsplash.jpg 133w, image/aidan-granberry-630661-unsplash.jpg 6000w"
sizes="(max-width: 900px) 15vw, (max-width: 600px) 27vw, 295vw"
alt="Unsplash_Photo2"
class="composition__photo composition__photo--p2"
src="/RogueX-Computer-Services/image/aidan-granberry-630661-unsplash.jpg">
<img srcset="/RogueX-Computer-Services/image/caspar-rubin-220712-unsplash.jpg 133w, image/caspar-rubin-220712-unsplash.jpg 6000w"
sizes="(max-width: 900px) 15vw, (max-width: 600px) 27vw, 295vw"
alt="Unsplash_Photo3"
class="composition__photo composition__photo--p3"
src="/RogueX-Computer-Services/image/caspar-rubin-220712-unsplash.jpg">
<!--
<img src="/RogueX-Computer-Services/image/image/alexandru-bogdan-ghita-481900-unsplash.jpg" alt="Unsplash_Photo1" class="composition__photo composition__photo--p1">
<img src="/RogueX-Computer-Services/image/aidan-granberry-630661-unsplash.jpg" alt="Unsplash_Photo2" class="composition__photo composition__photo--p2">
<img src="/RogueX-Computer-Services/image/caspar-rubin-220712-unsplash.jpg" alt="Unsplash_Photo3" class="composition__photo composition__photo--p3">
-->
</div>
</div>
</div>
</section>
<section class="section-features">
<div class="row">
<div class="col-1-of-4">
<div class="feature-box">
<i class="feature-box__icon icon-basic-keyboard"></i>
<h3 class="heading-tertiary u-margin-bottom-small">GAMING</h3>
<p class="feature-box__text">
<!-- <a href="#gameTennis">-->
We provide you with the latest and up to date PC specs to satisfy your gaming
needs!!! We have Ryzen 3 2200g and Athlon 200GE specs with vega graphics.
</p>
</div>
</div>
<div class="col-1-of-4">
<div class="feature-box">
<i class="feature-box__icon icon-basic-E"></i>
<h3 class="heading-tertiary u-margin-bottom-small">COMPUTER REPAIR</h3>
<p class="feature-box__text">
If you have problems with your PC, we can provide you with free consultation.
We also can help optimize your PC and remove malware or viruses.
</p>
</div>
</div>
<div class="col-1-of-4">
<div class="feature-box">
<i class="feature-box__icon icon-basic-joypad"></i>
<h3 class="heading-tertiary u-margin-bottom-small">PRINTING SERVICES</h3>
<p class="feature-box__text">
Have projects, need photo documentation and printing. Our printing services is your
solution to your concerns. We make calling cards and t-shirt printing.
</p>
</div>
</div>
<div class="col-1-of-4">
<div class="feature-box">
<i class="feature-box__icon icon-basic-joypad"></i>
<h3 class="heading-tertiary u-margin-bottom-small">WEB DEVELOPMENT</h3>
<p class="feature-box__text">
Need a "Website" to boost your business profits? We are here to help you with your
needs for developing a responsive website. Contact us for more details.
</p>
</div>
</div>
</div>
</section>
<section class="section-sample" id="section-sample">
<div class="u-center-text u-margin-bottom-big">
<h2 class="heading-about">
Project Portfolios
</h2>
</div>
<div class="row">
<!--first card-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--1">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--1">
RBSL Creative Designs
</span>
</h4>
<div class="card__details">
<ul>
<li>Animation</li>
<li>Graphic Design</li>
<li>Web Design</li>
<li>T-shirt Design</li>
<li>Calling Cards</li>
</ul>
</div>
</div>
<!--backside-->
<div class="card__side card__side--back card__side--back-1">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">
Price starts at
</p>
<p class="card__price-value">
P5,000
</p>
<a href="#popup" class="btn btn--blue">More Details</a>
</div>
</div>
</div>
</div>
</div>
<!--second card-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--2">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--1">
RBSL Free Tutorial
</span>
</h4>
<div class="card__details">
<ul>
<li>Microsoft Suite</li>
<li>Computer Repair</li>
<li>Diy Projects</li>
<li>Safety</li>
<li>Web Design</li>
</ul>
</div>
</div>
<!--backside 2-->
<div class="card__side card__side--back card__side--back-1">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">
FREE just your
</p>
<p class="card__price-value">
TIME
</p>
<a href="#popup" class="btn btn--blue">More Details</a>
</div>
</div>
</div>
</div>
</div>
<!--third card-->
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--3">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--1">
RBSLopez Photography
</span>
</h4>
<div class="card__details">
<ul>
<li>Studio Photoshoot</li>
<li>Outdoor Photoshoot</li>
<li>Wedding Photography</li>
<li>Street Photography</li>
<li>Travel Photography</li>
</ul>
</div>
</div>
<!--backside 3-->
<div class="card__side card__side--back card__side--back-1">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">
Price starts at
</p>
<p class="card__price-value">
P3,500
</p>
<a href="https://rbslopez.photo.blog/" class="btn btn--blue">More Details</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="u-center-text u-margin-top-huge">
<a href="#" class="btn btn--green">Other Portfolios</a>
</div>
</section>
<section class="section-stories">
<!--container for video-->
<div class="bg-video">
<video class="bg-video__content" autoplay muted loop>
<source src="/RogueX-Computer-Services/image/Working-it.mp4" type="video/mp4">
<source src="/RogueX-Computer-Services/image/Working-it.webm" type="video/webm">
Your browser is not supported!!
</video>
</div>
<!--heading format-->
<div class="u-center-text u-margin-bottom-big">
<h2 class="heading-about">
Gaming and Education combined!!
</h2>
</div>
<div class="row">
<div class="story">
<figure class="story__shape">
<img src="../RogueX-Computer-Services/image/sean-do-782269-unsplash.jpg" alt="gamer1" class="story__img1">
<figcaption class="story__caption">
Jasher Gamboa
</figcaption>
</figure>
<div class="story__text">
<h3 class="heading-tertiary u-margin-bottom-small">
The experience with them was very fun and engaging
</h3>
<p>
The customer service was superb, everyone was
very accomodating. Employees were always smiling and ready to help.
They will extend their help and they will make you feel like family.
</p>
</div>
</div>
</div>
<div class="row">
<div class="story">
<figure class="story__shape">
<img src="../RogueX-Computer-Services/image/sean-do-782791-unsplash.jpg" alt="gamer2" class="story__img2">
<figcaption class="story__caption">
John Smith
</figcaption>
</figure>
<div class="story__text">
<h3 class="heading-tertiary u-margin-bottom-small">
They value your time, as they value theirs
</h3>
<p>
The customer support was fast, when we needed
assistance, their team was quick to respond.
They will do their best to assist you as quickly as possible. The tech even
takes the extra effort to teach you some ways on how to do some troubleshooting.
</p>
</div>
</div>
</div>
<div class="u-center-text u-margin-top-huge">
<a href="#" class="btn-text">Read More →</a>
</div>
</section>
<section class="section-reservation">
<div class="row">
<div class="reservation">
<div class="reservation__form">
<form action="#" class="form">
<div class="u-margin-bottom-medium">
<h2 class="heading-about">
Start reservations now
</h2>
</div>
<div class="form__group">
<input type="text" class="form__input" placeholder="Full Name" id="name" required>
<label for="name" class="form__label">Full name</label>
</div>
<div class="form__group">
<input type="email" class="form__input" placeholder="Email Address" id="email" required>
<label for="email" class="form__label">Email Address</label>
</div>
<div class="form__group">
<div class="form__radio-group">
<input type="radio" class="form__radio-input" id="gaming" name="services">
<label for="gaming" class="form__radio-label">
<span class="form__radio-button"></span>
Gaming Reservation
</label>
</div>
<div class="form__radio-group">
<input type="radio" class="form__radio-input" id="repair" name="services">
<label for="repair" class="form__radio-label">
<span class="form__radio-button"></span>
Computer Servicing
</label>
</div>
</div>
<div class="form__group">
<button class="btn btn--blue">Next Step →</button>
<!--in a form it has to be a button element and not an anchor element so that
we could submit its content-->
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__logo-box">
<!--Art direction-->
<picture class="footer__logo">
<source srcset="/RogueX-Computer-Services/image/computer.png 1x, image/computer-large.png 2x" media="(max-width: 37.5)" >
<img srcset="/RogueX-Computer-Services/image/computer.png 1x, image/computer-large.png 2x" alt="footer-logo" class="footer__logo"><!--density descriptor - Density switching-->
</picture>
<!-- <img srcset="image/computer.png 1x, image/computer-large.png 2x" alt="footer-logo" class="footer__logo">density descriptor - Density switching-->
</div>
<div class="row">
<div class="col-1-of-2">
<div class="footer__navigation">
<ul class="footer__list">
<li class="footer__item"><a href="#" class="footer__link">ABOUT US</a></li>
<li class="footer__item"><a href="#" class="footer__link">CONTACT US</a></li>
<li class="footer__item"><a href="#" class="footer__link">PRIVACY POLICY</a></li>
<li class="footer__item"><a href="#" class="footer__link">TERMS</a></li>
</ul>
</div>
</div>
<div class="col-1-of-2">
<p class="footer__copyright">
This site was built through the help of <a href="#" class="footer__link">Jonas Schmedtmann</a>
online course <a href="#" class="footer__link">Advanced CSS and SASS</a>
. Copyright © By Jonas Schmedtman and Rodrigo Bonzerr S. Lopez. Its 100% free for you
to use this as a reference for your projects a credit to the creators would be highly appreciated.
</p>
</div>
</div>
</footer>
<div class="popup" id="popup">
<div class="popup__content">
<div class="popup__left">
<img src="/RogueX-Computer-Services/image/jake-noren-1267398-unsplash.jpg" alt="Creative Designs" class="popup__img">
<img src="/RogueX-Computer-Services/image/ilya-pavlov-87438-unsplash.jpg" alt="Creative Designs" class="popup__img">
</div>
<div class="popup__right">
<a href="#section-sample" class="popup__close">×</a>
<h2 class="heading-about u-margin-bottom-small">Creative Designs</h2>
<h3 class="heading-tertiary u-margin-bottom-small"> Welcome!! – Please do read more about the details of our services</h3>
<p class="popup__text">
Our design team can cover animation, logo-making, website design,
t-shirt, invitation, calling cards, and other design needs that you may need.
You can call us or we could set a meeting for us to discuss details of your projects,
we can provide you with free consultation and for you to get to know our
team of designers.
</p>
<a href="#" class="btn btn--blue">Contact Us</a>
<!--<canvas id="gameCanvas"></canvas> -->
</div>
</div>
</div>
<!--
<section class="grid-test">
<div class="row">
<div class="col-1-of-2">
Col 1 of 2
</div>
<div class="col-1-of-2">
Col 1 of 2
</div>
</div>
<div class="row">
<div class="col-1-of-3">
Col 1 of 3
</div>
<div class="col-1-of-3">
Col 1 of 3
</div>
<div class="col-1-of-3">
Col 1 of 3
</div>
</div>
<div class="row">
<div class="col-1-of-3">
Col 1 of 3
</div>
<div class="col-2-of-3">
Col 2 of 3
</div>
</div>
<div class="row">
<div class="col-1-of-4">
Col 1 of 4
</div>
<div class="col-1-of-4">
Col 1 of 4
</div>
<div class="col-1-of-4">
Col 1 of 4
</div>
<div class="col-1-of-4">
Col 1 of 4
</div>
</div>
<div class="row">
<div class="col-1-of-4">
Col 1 of 4
</div>
<div class="col-1-of-4">
Col 1 of 4
</div>
<div class="col-2-of-4">
Col 2 of 4
</div>
</div>
<div class="row">
<div class="col-1-of-4">
Col 1 of 4
</div>
<div class="col-3-of-4">
Col 3 of 4
</div>
</div>
</section>
-->
<!--
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
-->
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js">
</script>
<script>
particlesJS.load('particles-js', 'particles.json',
function () {
console.log('particles.json loaded....');
});
</script>
<!--
<script>
var canvas;
var canvasContext;
var ballX = 50;
var ballY = 50;
var ballSpeedX = 10;
var ballSpeedY = 4;
var paddle1Y = 50;
const PADDLE_HEIGHT = 60;
function calculateMousePos(evt) {
var rect = canvas.getBoundingClientRect();
var root = document.documentElement;
var mouseX = evt.clientX-rect.left-root.scrollLeft;
var mouseY = evt.clientY-rect.top-root.scrollTop;
return {
x:mouseX,
y:mouseY
};
}
window.onload = function() {
console.log("called drawEverything");
canvas = document.getElementById('gameCanvas');
canvasContext = canvas.getContext('2d');
var framesPerSecond = 30;
setInterval(function() {
moveEverything();
drawEverything();
}
,1000/framesPerSecond);
canvas.addEventListener('mousemove',
function(evt) {
var mousePos = calculateMousePos(evt);
paddle1Y = mousePos.y-(PADDLE_HEIGHT/2);
});
}
//Calling both functions Movement and Drawing function
/* function callBoth() {
moveEverything();
drawEverything();
}*/
//Movement function
function moveEverything() {
ballX = ballX + ballSpeedX;
ballY = ballY + ballSpeedY;
//movemenet vertically
if(ballX < 0) {
ballSpeedX = -ballSpeedX;
}
if(ballX > canvas.width) {
ballSpeedX = -ballSpeedX;
}
//movement horizontally
if(ballY < 0) {
ballSpeedY = -ballSpeedY;
}
if(ballY > canvas.height) {
ballSpeedY = -ballSpeedY;
}
}
//Drawing function
function drawEverything() {
//This is the canvas color
colorRect(0,0,canvas.width,canvas.height,'green');
//This is the left player paddel
colorRect(0,paddle1Y,10,PADDLE_HEIGHT,'white');
//This is the ball
// colorRect(ballX,100,10,10,'blue');
/*canvasContext.fillStyle ='white';
canvasContext.fillRect(0,210,10,100);
canvasContext.fillStyle='blue';
canvasContext.fillRect(ballX,100,10,10);*/
colorCircle(ballX, ballY,5, 'white');
}
function colorCircle(centerX, centerY, radius, drawColor) {
canvasContext.fillstyle = drawColor;
canvasContext.beginPath();
canvasContext.arc(centerX, centerY, radius, 0, Math.PI*2, true);
canvasContext.fill();
}
function colorRect (leftX, topY, width, height, drawColor) {
canvasContext.fillStyle = drawColor;
canvasContext.fillRect(leftX, topY, width, height);
}
</script>
-->
</body>
</html>