-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (73 loc) · 2.19 KB
/
index.html
File metadata and controls
76 lines (73 loc) · 2.19 KB
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
<!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" />
<link rel="stylesheet" href="landing-page/landing-page.css" />
<link
href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css"
rel="stylesheet"
/>
<!-- Icon link -->
<link
rel="icon"
type="image/svg"
href="../assets/images/game-controller.svg"
/>
<title>GAMSIC</title>
</head>
<body>
<main>
<!-- light icon -->
<header class="icon">
<i class="ri-sun-fill" id="btn"></i>
</header>
<!-- header section -->
<section class="title">
<h1>GAMSIC</h1>
</section>
<!-- figure section -->
<section class="figure">
<img
src="./assets/images/Xbox-wireless-controller-carbon-black 2.png"
id="game"
/>
<img src="./assets/images/image 3.png" id="music" />
<img src="./assets/images/image-loop.png" id="music-loop" />
<!--LEFT ARROW DIV-->
<div class="left-arrow">
<div class="one"></div>
<div class="two"></div>
<a href="./home-game/home-game.html"
><i class="ri-arrow-right-s-line"></i
></a>
</div>
<!--RIGHT ARROW DIV-->
<div class="right-arrow">
<div class="one"></div>
<div class="two"></div>
<a href="./home-music/home-music.html"
><i class="ri-arrow-right-s-line"></i
></a>
</div>
</section>
<!--BUTTON SECTION FOR RESPONSIVE-->
<section class="btn">
<a href="./home-game/home-game.html" class="left-arr">
<i class="ri-arrow-left-s-line"></i>
<p>click here</p>
</a>
<a href="./home-music/home-music.html" class="right-arr">
<p>click here</p>
<i class="ri-arrow-right-s-line"></i>
</a>
</section>
<!-- sub-title -->
<section class="sub-title">
<h2>Choose Your Journey</h2>
</section>
</main>
<script src="landing-page/landing-page.js"></script>
</body>
</html>