-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (88 loc) · 3.19 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
<!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="./CSS/home.css" />
<title>NOKA</title>
</head>
<body>
<nav>
<img src="./Asset/bars3.webp" alt="" id="navigationToggle" loading="eager" decoding="sync" />
<ul id="navigation">
<li><a href="./home.html" class="nav-child">HOME</a></li>
<li><a href="./news.html" class="nav-child">NEWS</a></li>
<li><a href="./register.html" class="nav-child">REGISTER</a></li>
<li><a href="./heroes.html" class="nav-child">HEROES</a></li>
<li><a href="./esports.html" class="nav-child">ESPORTS</a></li>
</ul>
</nav>
<div id="home">
<div class="container">
<h1>NOKA 3</h1>
<h2>Ready For The Next?</h2>
<a href="./register.html"><button>Register Now</button></a>
</div>
</div>
<div class="content">
<div class="container">
<h2>What's On Today</h2>
<div class="news">
<img src="./Asset/nintendo switch.webp" alt="" loading="lazy" decoding="async" />
<h3>Nintendo Switch Development Underway</h3>
<p>
Developer are starting to develop NIKO 3 for Nintendo Switch. The games is expected to
enter Alpha testing in Late 2022.
</p>
</div>
<h3>Interested about our progress?</h3>
<a href="./news.html" class=""><button>Find Out More</button></a>
</div>
<h2>NOKA Esports Results</h2>
<div class="container2">
<div class="match">
<h4>Past</h4>
<p><b>SEA</b> NOKA Elite 1 <span class="score">2 - 0</span> Team Liquid <b>EMEA</b></p>
<br />
<p><b>SEA</b> NOKA Elite 2 <span class="score">2 - 0</span> Faze Clan <b>NA</b></p>
</div>
<div class="match">
<h4>Ongoing</h4>
<p><b>SEA</b> NOKA Elite 1 <span class="score">1 - 0</span> RRQ <b>SEA</b></p>
<br />
<p><b>SEA</b> NOKA Elite 2 <span class="score">0 - 0</span> EVOS <b>SEA</b></p>
</div>
<div class="match">
<h4>Upcoming</h4>
<p><b>SEA</b> NOKA Elite 1 <span class="score">0 - 0</span> Fnatic <b>EMEA</b></p>
<br />
<p><b>SEA</b> NOKA Elite 2 <span class="score">0 - 0</span> T1 <b>KRJP</b></p>
</div>
</div>
<a href="./esports.html"><button class="morebtn">More</button></a>
</div>
<footer>
<div class="container">
<h3>NOKA 3™</h3>
<h4>Niko Game Studions Inc.</h4>
<h4>About Us</h4>
</div>
<div class="container2">
<a href="http://" target="_blank" rel="noopener noreferrer">
<img src="./Asset/ig2.webp" alt="" loading="lazy" decoding="async" />@nikogames
</a>
<a href="http://" target="_blank" rel="noopener noreferrer">
<img src="./Asset/twiiter.webp" alt="" loading="lazy" decoding="async" />@nikogames
</a>
<a href="mailto: info@nikogames.co.id" target="_blank" rel="noopener noreferrer">
<img src="./Asset/mail.webp" alt="" loading="lazy" decoding="async" />info@nikogames.co.id
</a>
<a href="http://" target="_blank" rel="noopener noreferrer">
<img src="./Asset/facebook.webp" alt="" loading="lazy" decoding="async" />nikogames
</a>
</div>
</footer>
</body>
<script src="./script.js"></script>
</html>