-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
105 lines (88 loc) · 3.54 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Welcome to GGCat</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='/GGCat-IT-Project/src/css/epicTheme.css'>
<link rel='stylesheet' type='text/css' media='screen' href='/GGCat-IT-Project/src/css/global.css'>
<link rel="stylesheet" type="text/css" media="screen" href="/GGCat-IT-Project/src/css/home.css">
<link rel='stylesheet' type='text/css' media='screen' href='/GGCat-IT-Project/src/css/all.min.css'>
</head>
<body>
<header id="header"></header>
<div class="box-holder">
<div class="box w-90 p-0 hcenter">
<section class="part1">
<video autoplay muted loop id="video-bg">
<source src="/GGCat-IT-Project/assets/vids/IT project - Made with Clipchamp.mp4" type="video/mp4">
</video>
<h1 class="zone">(\_/)<br>(^.^)<br>/><span>GAME ZONE</span></h1>
<div class="content">
<h1>EPIC GAMES MADE FOR TRUE GAMERS !</h1>
<div class="cot">
<a href="/GGCat-IT-Project/auth/index.html">
<button class="button"> join us</button>
</a>
</div>
</div>
</section>
<input type="search" placeholder="Search by game name" id="search">
<section class="part2">
<a href="/GGCat-IT-Project/games/12345/index.html" id="12345">
<div class="card1">
<div class="game">
<img src="/GGCat-IT-Project/assets/images/WhatsApp Image 2024-04-28 at 19.10.30_dd4e6edb.jpg">
<div class="info1">
<h1 searchItem="12345">FORTNITE</h1>
<p>Genres: Action<br>Features: Co-op,Single Player</p>
</div>
</div>
</div>
</a>
<a href="/GGCat-IT-Project/games/20393/index.html" id="20393">
<div class="card1 card2">
<div class="game">
<img src="/GGCat-IT-Project/assets/images/fg5.jpg">
<div class="info1">
<h1 searchItem="20393">FALL GUYS</h1>
<p>Genres: Battle royale, platform<br>Features: Co-op,Single Player</p>
</div>
</div>
</div>
</a>
<a href="/GGCat-IT-Project/games/78398/index.html" id="78398">
<div class="card1 card3">
<div class="game">
<img src="/GGCat-IT-Project/assets/images/rocketleague3.jpg">
<div class="info1">
<h1 searchItem="78398">ROCKET LEAGUE</h1>
<p>Genres: Sports<br>Features: Co-op,Single Player</p>
</div>
</div>
</div>
</a>
</section>
<section class="part3">
<div class="slideshow-container">
<div class="slide fade">
<img src="/GGCat-IT-Project/assets/images/img1.jpg" alt="Photo 1">
</div>
<div class="slide fade">
<img src="/GGCat-IT-Project/assets/images/img2.jpg" alt="Photo 2">
</div>
<div class="slide fade">
<img src="/GGCat-IT-Project/assets/images/img3.jpg" alt="Photo 3">
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
</section>
</div>
</div>
<footer id="footer"></footer>
</body>
</html>
<script src='/GGCat-IT-Project/src/scripts/main.js'></script>
<script src='/GGCat-IT-Project/src/scripts/home.js'></script>