-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
887 lines (820 loc) · 56.8 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
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>UB Game Review</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link rel="stylesheet" href="lib/animate/animate.min.css"/>
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Spinner Start -->
<div id="spinner" class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner-border text-primary" style="width: 3rem; height: 3rem;" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<!-- Spinner End -->
<!-- Navbar & Hero Start -->
<div class="container-fluid position-relative p-0">
<nav class="navbar navbar-expand-lg navbar-light px-4 px-lg-5 py-3 py-lg-0">
<a href="" class="navbar-brand p-0">
<h1 style="color: #006eb9">
<img src="./img/logo.png" alt="">
UB Games Review</h1>
<!-- <img src="img/logo.png" alt="Logo"> -->
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="fa fa-bars"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto py-0">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="about.html" class="nav-item nav-link">About</a>
<a href="news.html" class="nav-item nav-link">News</a>
<a href="feature.html" class="nav-item nav-link">Features</a> <!-- co the add lai phan game-->
<a href="available.html" class="nav-item nav-link">PC Available</a> <!--create a available.html file-->
<div class="nav-item dropdown">
<a href="#" class="nav-link" data-bs-toggle="dropdown">
<span class="dropdown-toggle">Games</span>
</a>
<div class="dropdown-menu m-0"> <!--Nho doi ten file html (pc.html)-->
<a href="PC.html" class="dropdown-item">PC</a>
<a href="#" class="dropdown-item">PS5</a>
<a href="#" class="dropdown-item">Xbox</a>
<a href="#" class="dropdown-item">Nitendo Switch</a> <!--nho xoa file thua (FAQ.html, 404.html)-->
</div>
</div>
</div>
<a href="#" class="btn btn-primary rounded-pill py-2 px-4 my-3 my-lg-0 flex-shrink-0">Sign In</a>
</div>
</nav>
<!-- Carousel Start -->
<!-- -->
<!-- Valorant CS2 Lol FIFA 23 NBA 2K23 -->
<div class="header-carousel owl-carousel">
<div class="header-carousel-item">
<img src="img/nba2k23.png" class="img-fluid w-100" alt="Image">
<div class="carousel-caption">
<div class="container">
<div class="row gy-0 gx-5">
<div class="col-lg-0 col-xl-5"></div>
<div class="col-xl-7 animated fadeInLeft">
<div class="text-sm-center text-md-end">
<h4 class="text-primary text-uppercase fw-bold mb-4">Game of The Year</h4>
<h1 class="display-4 text-uppercase text-white mb-4">NBA 2K23</h1>
<p class="mb-5 fs-5">NBA 2K23 features a completely rebuilt version of NBA 2K11's Jordan Challenges that had players trying to virtually recreate Jordan's real-life feats. One of these was a challenge to score at least 38 points and grab 7+ rebounds like Jordan himself did in June 1997 during his memorable "flu game" when a sick Jordan still put up big numbers and drained the winning basket in the NBA Finals.
</p>
<div class="d-flex justify-content-center justify-content-md-end flex-shrink-0 mb-4">
<a class="btn btn-light rounded-pill py-3 px-4 px-md-5 me-2" href="https://www.youtube.com/watch?v=rBZ_q6wIJKY" target="_blank"><i class="fas fa-play-circle me-2"></i>Watch Video</a>
<a class="btn btn-light rounded-pill py-3 px-4 px-md-5 me-2" href="https://nba.2k.com/2k23/" target="_blank"><i class="fas fa-play-circle me-2"></i>Learn More</a>
<a class="btn btn-primary rounded-pill py-3 px-4 px-md-5 ms-2" href="ubscores.html">UB Rating: 90</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="header-carousel-item">
<img src="img/cs2.png" class="img-fluid w-100" alt="Image">
<div class="carousel-caption">
<div class="container">
<div class="row gy-0 gx-5">
<div class="col-lg-0 col-xl-5"></div>
<div class="col-xl-7 animated fadeInLeft">
<div class="text-sm-center text-md-end">
<h4 class="text-primary text-uppercase fw-bold mb-4">Game of The Year</h4>
<h1 class="display-4 text-uppercase text-white mb-4">Counter Strike 2</h1>
<p class="mb-5 fs-5">
Counter-Strike 2 is the largest technical leap forward in Counter-Strike's history, ensuring new features and updates for years to come. Counter-Strike 2 arrives this summer as a free upgrade to CS:GO. So build your loadout, hone your skills, and prepare yourself for what's next!
</p>
<div class="d-flex justify-content-center justify-content-md-end flex-shrink-0 mb-4">
<a class="btn btn-light rounded-pill py-3 px-4 px-md-5 me-2" href="https://www.youtube.com/watch?v=nSE38xjMLqE" target="_blank"><i class="fas fa-play-circle me-2"></i>Watch Video</a>
<a class="btn btn-light rounded-pill py-3 px-4 px-md-5 me-2" href="https://www.counter-strike.net/cs2" target="_blank"><i class="fas fa-play-circle me-2"></i>Learn More</a>
<a class="btn btn-primary rounded-pill py-3 px-4 px-md-5 ms-2" href="ubscores.html">UB Rating: 91</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="header-carousel-item">
<img src="img/lol.png" class="img-fluid w-100" alt="Image">
<div class="carousel-caption">
<div class="container">
<div class="row gy-0 gx-5">
<div class="col-lg-0 col-xl-5"></div>
<div class="col-xl-7 animated fadeInLeft">
<div class="text-sm-center text-md-end">
<h4 class="text-primary text-uppercase fw-bold mb-4" style="color:#006eb9">Game of The Year</h4>
<h1 class="display-4 text-uppercase text-white mb-4">League of Legends </h1>
<p class="mb-5 fs-5">Join forces with your closest allies as you unite to defeat your foes in deadly multiplayer battle arenas. League of Legends combines elements from both strategy and role playing games to bring you a unique and dynamic player experience. As a Summoner, you will have your own distinct, customizable avatar that grows in power as you move through the game.
</p>
<div class="d-flex justify-content-center justify-content-md-end flex-shrink-0 mb-4">
<a class="btn btn-light rounded-pill py-3 px-4 px-md-5 me-2" href="https://www.youtube.com/watch?v=IzMnCv_lPxI" target="_blank"><i class="fas fa-play-circle me-2"></i>Watch Video</a>
<a class="btn btn-light rounded-pill py-3 px-4 px-md-5 me-2" href="https://www.leagueoflegends.com/en-us/" target="_blank"><i class="fas fa-play-circle me-2"></i>Learn More</a>
<a class="btn btn-primary rounded-pill py-3 px-4 px-md-5 ms-2" href="ubscores.html">UB Rating: 94</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="header-carousel-item">
<img src="img/valorant.png" class="img-fluid w-100" alt="Image">
<div class="carousel-caption">
<div class="container">
<div class="row gy-0 gx-5">
<div class="col-lg-0 col-xl-5"></div>
<div class="col-xl-7 animated fadeInLeft">
<div class="text-sm-center text-md-end">
<h4 class="text-primary text-uppercase fw-bold mb-4">Game of The Year</h4>
<h1 class="display-4 text-uppercase text-white mb-4">Valorant</h1>
<p class="mb-5 fs-5">A 5v5 character-based tactical shooter. Imagine this: tactical shooter meets hypernatural powers. Everyone's got guns and a unique set of abilities, so how do you beat someone with the speed of wind? Use your own moves to outplay them and beat them to the shot. VALORANT is a game for bold strategists who dare to make the unexpected play, because if it wins, it works.
</p>
<div class="d-flex justify-content-center justify-content-md-end flex-shrink-0 mb-4">
<a class="btn btn-light rounded-pill py-3 px-4 px-md-5 me-2" href="https://www.youtube.com/watch?v=IhhjcB2ZjIM" target="_blank"><i class="fas fa-play-circle me-2"></i>Watch Video</a>
<a class="btn btn-light rounded-pill py-3 px-4 px-md-5 me-2" href="https://playvalorant.com/en-us/" target="_blank"><i class="fas fa-play-circle me-2"></i>Learn More</a>
<a class="btn btn-primary rounded-pill py-3 px-4 px-md-5 ms-2" href="ubscores.html">UB Rating: 89</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="header-carousel-item">
<img src="img/fifa23.png" class="img-fluid w-100" alt="Image">
<div class="carousel-caption">
<div class="container">
<div class="row gy-0 gx-5">
<div class="col-lg-0 col-xl-5"></div>
<div class="col-xl-7 animated fadeInLeft">
<div class="text-sm-center text-md-end">
<h4 class="text-primary text-uppercase fw-bold mb-4">Game of The Year</h4>
<h1 class="display-4 text-uppercase text-white mb-4">FIFA 23</h1>
<p class="mb-5 fs-5">In FIFA 23, cross-play will be available at launch in FUT Division Rivals (except Co-Op), FUT Champions, FUT Ultimate Online Draft, FUT Online Friendlies (except Co-Op), FUT Play a Friend, Online Friendlies, Online Seasons (except Co-Op Seasons) and the Virtual Bundesliga competitive game mode that is available to players based in Germany. Cross-play is initially enabled for all players when launching FIFA 23 for the first time, provided the platform level settings allow for it, and it can be opted out of at any time.
</p>
<div class="d-flex justify-content-center justify-content-md-end flex-shrink-0 mb-4">
<a class="btn btn-light rounded-pill py-3 px-4 px-md-5 me-2" href="https://www.youtube.com/watch?v=o3V-GvvzjE4" target="_blank"><i class="fas fa-play-circle me-2"></i>Watch Video</a>
<a class="btn btn-light rounded-pill py-3 px-4 px-md-5 me-2" href="https://www.ea.com/games/fifa/fifa-23" target="_blank"><i class="fas fa-play-circle me-2"></i>Learn More</a>
<a class="btn btn-primary rounded-pill py-3 px-4 px-md-5 ms-2" href="ubscores.html">UB Rating: 95</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Carousel End -->
</div>
<!-- Navbar & Hero End -->
<!-- About Start -->
<div class="container-fluid about py-5">
<div class="container py-5">
<div class="row g-5 align-items-center">
<div class="col-xl-7 wow fadeInLeft" data-wow-delay="0.2s">
<div>
<h4 class="text-primary">About Us</h4>
<h1 class="display-5 mb-4">Top 1 Game Rating Website at UB </h1>
<p class="mb-4">Welcome to our game rating website, where students can find their favourite games at UB. Discover, rate, and discuss the latest games with fellow enthusiasts, making it easy to find your next inspiration. Join the community and level up your gaming experience!
</p>
<div class="row g-4">
<div class="col-md-6 col-lg-6 col-xl-6">
<div class="d-flex">
<div><i class="fas fa-lightbulb fa-3x text-primary"></i></div>
<div class="ms-4">
<h4>Always Up-to-Date</h4>
<p>Get the latest games and ratings daily to keep your gaming choices fresh and exciting!
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-6">
<div class="d-flex">
<div><i class="bi bi-bookmark-heart-fill fa-3x text-primary"></i></div>
<div class="ms-4">
<h4>Year Of Expertise</h4>
<p>
With years of experience, we offer reliable ratings to help you find the best games.
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<a href="#" class="btn btn-primary rounded-pill py-3 px-5 flex-shrink-0">Discover Now</a>
</div>
<div class="col-sm-6">
<div class="d-flex">
<i class="fas fa-phone-alt fa-2x text-primary me-4"></i>
<div>
<h4>Call Us</h4>
<p class="mb-0 fs-5" style="letter-spacing: 1px;">+716-645-3542</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-5 wow fadeInRight" data-wow-delay="0.2s">
<img src="img/about-us-1.png" class="img-fluid rounded w-75" style="padding-bottom: 10px;" alt="">
<img src="img/about-us-2.png" class="img-fluid rounded w-75" alt="">
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- News Start -->
<div class="container-fluid service pb-5">
<div class="container pb-5">
<div class="text-center mx-auto pb-5 wow fadeInUp" data-wow-delay="0.2s" style="max-width: 800px;">
<h4 class="text-primary">Gaming News</h4>
<p class="mb-0">The biggest video game news, rumors, previews, and info about the PC, PlayStation, Xbox, Nintendo, & mobile titles you play.
</p>
</div>
<div class="row g-4">
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.2s">
<div class="service-item">
<div class="service-img">
<img src="img/news-image1.png" class="img-fluid rounded-top w-100" alt="Image">
</div>
<div class="rounded-bottom p-4">
<a href="#" class="h4 d-inline-block mb-4">Black Myth: Wukong Confirms Release Date for Physical PS5 Version</a>
<p class="mb-4">Black Myth: Wukong has an official date for its physical release on PlayStation 5, letting players add it to their gaming shelves.
</p>
<a class="btn btn-primary rounded-pill py-2 px-4" href="#">Learn More</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.4s">
<div class="service-item">
<div class="service-img">
<img src="img/news-image2.png" class="img-fluid rounded-top w-100" alt="Image">
</div>
<div class="rounded-bottom p-4">
<a href="#" class="h4 d-inline-block mb-4">World of Warcraft Releases New Hotfix Update for November 13, 2024</a>
<p class="mb-4">Amid the ongoing World of Warcraft 20th anniversary celebrations, Blizzard releases a list of hotfixes for The War Within.
</p>
<a class="btn btn-primary rounded-pill py-2 px-4" href="#">Learn More</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.6s">
<div class="service-item">
<div class="service-img">
<img src="img/news-image3.png" class="img-fluid rounded-top w-100" alt="Image">
</div>
<div class="rounded-bottom p-4">
<a href="#" class="h4 d-inline-block mb-4">Dragon Age: The Veilguard Reveals Most Popular Classes and Races</a>
<p class="mb-4">BioWare has officially revealed the most popular classes and races in Dragon Age: The Veilguard so far.
</p>
<a class="btn btn-primary rounded-pill py-2 px-4" href="#">Learn More</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.2s">
<div class="service-item">
<div class="service-img">
<img src="img/news-image4.png" class="img-fluid rounded-top w-100" alt="Image">
</div>
<div class="rounded-bottom p-4">
<a href="#" class="h4 d-inline-block mb-4">Scalpers Are Reportedly Losing Money on PS5 Pro Consoles</a>
<p class="mb-4">Stardew Valley creator Eric 'ConcernedApe' Barone shares his thoughts on the potential future of the game, drawing excitement.
</p>
<a class="btn btn-primary rounded-pill py-2 px-4" href="#">Learn More</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.4s">
<div class="service-item">
<div class="service-img">
<img src="img/news-image5.png" class="img-fluid rounded-top w-100" alt="Image">
</div>
<div class="rounded-bottom p-4">
<a href="#" class="h4 d-inline-block mb-4">Infinity Nikki Reaches Incredible Number of Pre-Registratios</a>
<p class="mb-4">Infinity Nikki is aiming to be the coziest open-world game, and that appeal has already amassed a jaw-dropping number of players.
</p>
<a class="btn btn-primary rounded-pill py-2 px-4" href="#">Learn More</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow fadeInUp" data-wow-delay="0.4s">
<div class="service-item">
<div class="service-img">
<img src="img/news-image6.png" class="img-fluid rounded-top w-100" alt="Image">
</div>
<div class="rounded-bottom p-4">
<a href="#" class="h4 d-inline-block mb-4">Infinity Nikki Details Ability Outfits and Skins</a>
<p class="mb-4">Infinity Nikki reveals more outfits and abilities that Nikki will use to traverse Mirrorland in the magical cozy adventure game.
</p>
<a class="btn btn-primary rounded-pill py-2 px-4" href="#">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Services End -->
<!-- Best rating games start -->
<div class="container-fluid blog pb-5">
<div class="container pb-5">
<h4 class="text-primary">Best Rating Games</h4>
<br>
<div class="blog-carousel owl-carousel wow fadeInUp" data-wow-delay="0.2s" style="transform: scale(0.25s); transform-origin: top left;">
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/bestgames-image1.png" class="img-fluid w-90 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">Sports</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">1.FIFA23</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">95</p>
</div>
<p class="mb-4">Realistic football action and intense gameplay in FIFA 23.</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/bestgames-image2.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">MOBA</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">2.League of Legends</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">92</p>
</div>
<p class="mb-4">Strategic 5v5 battles with diverse champions in League of Legends.
</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/bestgames-image3.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">Shooter</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">3.Counter Strike: 2</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">91</p>
</div>
<p class="mb-4">Tactical 5v5 action with precision battle shooting in CS2.</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/bestgames-image4.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">Sports</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">4.NBA2k23</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">90</p>
</div>
<p class="mb-4">Realistic basketball experience with immersive gameplay in NBA 2K23.
</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/bestgames-image5.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">Shooter</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">5.Valorant</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">89</p>
</div>
<p class="mb-4">Fast-paced 5v5 shooter with unique agent abilities in Valorant.
</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/bestgames-image6.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">Shooter</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">6.Left 4 Dead 2</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">88</p>
</div>
<p class="mb-4">Co-op zombie survival with intense action in Left 4 Dead 2.
</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/bestgames-image7.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">RPG</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">7.Genshin Impact</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">88</p>
</div>
<p class="mb-4">Explore a vast world and unleash elemental powers in Genshin Impact..
</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/bestgames-image8.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">RPG</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">8.Final Fantasy XIV</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">87</p>
</div>
<p class="mb-4">EA popular MMORPG featuring immersive worlds and stories.
</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/bestgames-image9.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">MOBA</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">9.Dota2</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">86</p>
</div>
<p class="mb-4">A competitive MOBA with strategic team-based gameplay.
</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/bestgames-image10.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">MMORPG</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">10.EVE Online</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">85</p>
</div>
<p class="mb-4">A space-based MMORPG with vast exploration and strategy.
</p>
</div>
</div>
</div>
</div>
<!-- Blog End -->
<!-- Best Upcoming Games -->
<div class="container-fluid blog pb-5">
<div class="container pb-5">
<h4 class="text-primary">Best Upcoming Games</h4>
<br>
<div class="blog-carousel owl-carousel wow fadeInUp" data-wow-delay="0.2s" style="transform: scale(0.25s); transform-origin: top left;">
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/upcoming-games1.png" class="img-fluid w-90 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">Survival</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">Blight Survival</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">92</p>
</div>
<p class="mb-4">Co-op battle survival game in a dark, cursed world.</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/upcoming-games2.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">Action</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">Cloudburst</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">90</p>
</div>
<p class="mb-4">A fast-paced action game featuring stormy battles.
</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/upcoming-games3.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">Sci-Fi</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">The Voidness</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">91</p>
</div>
<p class="mb-4">Explore the unknown in a haunting, dark universe.</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/upcoming-games4.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">Strategy</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">Project TH</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">90</p>
</div>
<p class="mb-4">A mysterious, upcoming project with futuristic tech.
</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/upcoming-games5.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">Adventure</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">Rooted</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">89</p>
</div>
<p class="mb-4">A survival game focused on environmental threats.
</p>
</div>
<div class="blog-item p-4">
<div class="blog-img mb-4">
<img src="img/upcoming-games6.png" class="img-fluid w-100 rounded" alt="">
<div class="blog-title">
<a href="#" class="btn" width="70%">Horror</a>
</div>
</div>
<div class="each-game-card">
<a href="#" class="h4 d-inline-block mb-3">No More Light</a>
<p class="btn btn-md-square btn-light rounded-circle ms-2" href="">88</p>
</div>
<p class="mb-4">Co-op zombie survival with intense action left 4 dead.
</p>
</div>
</div>
</div>
</div>
<!-- Blog End -->
<!-- FAQs Start -->
<div class="container-fluid faq-section pb-5">
<div class="container pb-5 overflow-hidden">
<div class="text-center mx-auto pb-5 wow fadeInUp" data-wow-delay="0.2s" style="max-width: 800px;">
<h4 class="text-primary">FAQs</h4>
<h1 class="display-5 mb-4">Frequently Asked Questions</h1>
<p class="mb-0">Welcome to our FAQ section! Here you'll find answers to common questions about using the University at Buffalo's Game Rating Website. Whether you're learning how to rate games, create an account, or navigate the site, this guide will help you get the most out of your experience. If you need more assistance, feel free to contact our support team.
</p>
</div>
<div class="row g-5 align-items-center">
<div class="col-lg-6 wow fadeInLeft" data-wow-delay="0.2s">
<div class="accordion accordion-flush bg-light rounded p-5" id="accordionFlushSection">
<div class="accordion-item rounded-top">
<h2 class="accordion-header" id="flush-headingOne">
<button class="accordion-button collapsed rounded-top" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne">
What Does This Tool Do?
</button>
</h2>
<div id="flush-collapseOne" class="accordion-collapse collapse" aria-labelledby="flush-headingOne" data-bs-parent="#accordionFlushSection">
<div class="accordion-body">Our website allows University at Buffalo students and community members to rate, review, and discuss video games. You can share your experiences and discover new games based on peer feedback.</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseTwo" aria-expanded="false" aria-controls="flush-collapseTwo">
What Are The Benefits of Using This Website?
</button>
</h2>
<div id="flush-collapseTwo" class="accordion-collapse collapse" aria-labelledby="flush-headingTwo" data-bs-parent="#accordionFlushSection">
<div class="accordion-body">By using our website, you can get personalized game recommendations, read reviews from fellow UB students, and participate in community discussions about your favorite games.</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseThree" aria-expanded="false" aria-controls="flush-collapseThree">
How Do I Rate a Game on the Website?
</button>
</h2>
<div id="flush-collapseThree" class="accordion-collapse collapse" aria-labelledby="flush-headingThree" data-bs-parent="#accordionFlushSection">
<div class="accordion-body">To rate a game, simply log in to your account, search for the game you want to rate, and select your score based on your experience. You can also write a detailed review to share your thoughts.</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseFour" aria-expanded="false" aria-controls="flush-collapseFour">
Is My Data Safe on the Website?
</button>
</h2>
<div id="flush-collapseFour" class="accordion-collapse collapse" aria-labelledby="flush-headingFour" data-bs-parent="#accordionFlushSection">
<div class="accordion-body">Yes, your personal data is protected through secure login processes and encryption. We take privacy and security seriously, ensuring your information remains safe while using our site.</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingFive">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseFive" aria-expanded="false" aria-controls="flush-collapseFive">
Can I Review Games that Aren't Listed?
</button>
</h2>
<div id="flush-collapseFive" class="accordion-collapse collapse" aria-labelledby="flush-headingFive" data-bs-parent="#accordionFlushSection">
<div class="accordion-body">Yes, you can submit games that aren't currently listed on our site. Once submitted, our team will review and add them to the database for others to rate and discuss.</div>
</div>
</div>
<div class="accordion-item rounded-bottom">
<h2 class="accordion-header" id="flush-headingSix">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseSix" aria-expanded="false" aria-controls="flush-collapseSix">
How Do I Create an Account on the Website?
</button>
</h2>
<div id="flush-collapseSix" class="accordion-collapse collapse" aria-labelledby="flush-headingSix" data-bs-parent="#accordionFlushSection">
<div class="accordion-body">To create an account, click on the "Sign Up" button on the homepage, enter your university email address, create a password, and verify your account. Once your account is active, you can start rating and reviewing games.</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInRight" data-wow-delay="0.2s">
<div class="bg-primary rounded">
<img src="img/faq-image1.png" class="img-fluid w-150" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- FAQs End -->
<!-- do this Top Streamer -->
<div class="container-fluid team pb-5">
<div class="container pb-5">
<div class="text-center mx-auto pb-5 wow fadeInUp" data-wow-delay="0.2s" style="max-width: 800px;">
<h4 class="text-primary">Twitch Top Streamers</h4>
<h1 class="display-5 mb-4">Meet Our Favoured Faces</h1>
<p class="mb-0">Top Twitch streams combine engaging gameplay, skilled commentary, and real-time interaction with viewers, creating an energetic and entertaining atmosphere. The streamers build a strong community by responding to chat, maintaining high-quality visuals and sound, and making viewers feel involved and connected.
</p>
</div>
<div class="row g-4">
<div class="col-md-6 col-lg-6 col-xl-3 wow fadeInUp" data-wow-delay="0.2s">
<div class="team-item">
<div class="team-img">
<img src="img/StreamerKaiCenat.png" class="img-fluid" alt="">
</div>
<div class="team-title">
<h4 class="mb-0">Kai Cenat</h4>
<p class="mb-0">Influencer</p>
</div>
<div class="team-icon">
<a class="btn btn-primary btn-sm-square rounded-circle me-0" href="https://www.twitch.tv/kaicenat" target=_blank><i class="fab fa-twitch"></i></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-3 wow fadeInUp" data-wow-delay="0.4s">
<div class="team-item">
<div class="team-img">
<img src="img/StreamerShroud.png" class="img-fluid" alt="">
</div>
<div class="team-title">
<h4 class="mb-0">Shroud</h4>
<p class="mb-0">Each bullet for a head</p>
</div>
<div class="team-icon">
<a class="btn btn-primary btn-sm-square rounded-circle me-0" href="https://www.twitch.tv/shroud" target=_blank><i class="fab fa-twitch"></i></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-3 wow fadeInUp" data-wow-delay="0.6s">
<div class="team-item">
<div class="team-img">
<img src="img/StreamerThebausffs.png" class="img-fluid" alt="">
</div>
<div class="team-title">
<h4 class="mb-0">The Bausffs</h4>
<p class="mb-0">Game-breaking mind</p>
</div>
<div class="team-icon">
<a class="btn btn-primary btn-sm-square rounded-circle me-0" href="https://www.twitch.tv/thebausffs" target=_blank><i class="fab fa-twitch"></i></a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-3 wow fadeInUp" data-wow-delay="0.8s">
<div class="team-item">
<div class="team-img">
<img src="img/StreamerSpeed.png" class="img-fluid" alt="">
</div>
<div class="team-title">
<h4 class="mb-0">IShowSpeed</h4>
<p class="mb-0">Mr.international</p>
</div>
<div class="team-icon">
<a class="btn btn-primary btn-sm-square rounded-circle me-0" href="https://www.twitch.tv/ishowspeed" target=_blank><i class="fab fa-twitch"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Team End -->
<!-- Footer Start -->
<div class="container-fluid footer py-5 wow fadeIn" data-wow-delay="0.2s">
<div class="container py-5 border-start-0 border-end-0" style="border: 1px solid; border-color: rgb(255, 255, 255, 0.08);">
<div class="row g-5" style="justify-content: space-between;">
<div class="col-md-6 col-lg-6 col-xl-4">
<div class="footer-item">
<a href="index.html" class="p-0">
<h4 class="text-white"><i class="fas fa-search-dollar me-3"></i>UB Games Review</h4>
<!-- <img src="img/logo.png" alt="Logo"> -->
</a>
<p class="mb-4">A platform for UB students to rate, review, and discuss games. Share your thoughts and discover new titles with the UB gaming community!</p>
<div class="d-flex">
<img src="./img/footer-ubuhacking.png" width="150" alt="">
<img src="./img/footer-phobo.png" width="200" alt="">
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-2">
<div class="footer-item">
<h4 class="text-white mb-4">Quick Links</h4>
<a href="index.html"><i class="fas fa-angle-right me-2"></i> Home</a>
<a href="about.html"><i class="fas fa-angle-right me-2"></i> About</a>
<a href="news.html"><i class="fas fa-angle-right me-2"></i> News</a>
<a href="feature.html"><i class="fas fa-angle-right me-2"></i> Features</a>
<a href="available.html"><i class="fas fa-angle-right me-2"></i> PC Available</a>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-3">
<div class="footer-item">
<h4 class="text-white mb-4">Contact Info</h4>
<div class="d-flex align-items-center">
<i class="fas fa-map-marker-alt text-primary me-3"></i>
<p class="text-white mb-0">Lockwood Memorial Library</p>
</div>
<div class="d-flex align-items-center">
<i class="fas fa-envelope text-primary me-3"></i>
<p class="text-white mb-0">[email protected]</p>
</div>
<div class="d-flex align-items-center">
<i class="fa fa-phone-alt text-primary me-3"></i>
<p class="text-white mb-0">716-645-3542</p>
</div>
<div class="d-flex align-items-center mb-4">
<i class="fab fa-firefox-browser text-primary me-3"></i>
<p class="text-white mb-0">UBGamesReview.com</p>
</div>
<p classs="text-white mb-0" >Our Linkedin:</p>
<div class="d-flex">
<a class="btn btn-primary btn-sm-square rounded-circle me-3" href="https://www.linkedin.com/in/bach-pham-aa3a02328/" target="_blank"><i class="fab fa-linkedin-in text-white"></i></a>
<a class="btn btn-primary btn-sm-square rounded-circle me-3" href="https://www.linkedin.com/in/duynghiem/" target="_blank"><i class="fab fa-linkedin-in text-white"></i></a>
<a class="btn btn-primary btn-sm-square rounded-circle me-3" href="https://www.linkedin.com/in/kien-vo-dinh-66a357296/" target="_blank"><i class="fab fa-linkedin-in text-white"></i></a>
<a class="btn btn-primary btn-sm-square rounded-circle me-0" href="https://www.linkedin.com/in/ngoc-tran-bach-pham-2b6a18196/"><i class="fab fa-linkedin-in text-white" target="_blank"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Copyright Start -->
<div class="container-fluid copyright py-4">
<div class="container">
<div class="row g-4 align-items-center">
<div class="col-md-6 text-center text-md-start mb-md-0">
<span class="text-body"><a href="#" class="border-bottom text-white"><i class="fas fa-copyright text-light me-2"></i>UB Games Review</a>, All right reserved.</span>
</div>
<div class="col-md-6 text-center text-md-end text-body">
<!--/*** This template is free as long as you keep the below author’s credit link/attribution link/backlink. ***/-->
<!--/*** If you'd like to use the template without the below author’s credit link/attribution link/backlink, ***/-->
<!--/*** you can purchase the Credit Removal License from "https://htmlcodex.com/credit-removal". ***/-->
Designed By <a class="border-bottom text-white" href="https://htmlcodex.com">HTML Codex</a>
</div>
</div>
</div>
</div>
<!-- Copyright End -->
<!-- Back to Top -->
<a href="#" class="btn btn-primary btn-lg-square rounded-circle back-to-top"><i class="fa fa-arrow-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>