-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
44 lines (40 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Canvas</title>
<script src="/bundle.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZELXHTGMHQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-ZELXHTGMHQ');
</script>
</head>
<body class="container">
<header class="header">
<div class="header--content">
<a href="javascript:void(0)" class="logo">Kid Lab</a>
<div class="switch"></div>
</div>
</header>
<main class="main">
<nav class="nav">
<div class="nav--list">
<a class="link list--item item--1" href="/home"><span>out</span></a>
<a class="link list--item item--2" href="/draw"><span>Draw</span></a>
<a class="link list--item item--3" href="/hide-n-seek"><span>hide-n-seek</span></a>
<a class="link list--item item--4" href="/canvas"><span>Canvas</span></a>
<a class="link list--item item--4" href="/capital"><span>Capital</span></a>
</div>
</nav>
<section>
this is index page
</section>
</main>
<footer class="footer">
© | 2024 | Recursive Zero Private Limited | All rights reserved.
</footer>
</html>