-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (62 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
This is an HTML comment
You can write text in a comment and the content won't be visible in the page
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://cdn.glitch.global/de32b24f-28c6-472c-8631-3e7e06262397/favicon.ico?v=1681460954349" />
<!--
This is the page head - it contains info the browser uses
Like the title, which appears on the browser tab but not inside the page
Further down you'll see the content that displays in the page
-->
<title>kUERI</title>
<!-- The website stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- The website JavaScript file -->
<script src="/script.js" defer></script>
</head>
<body>
<!--
The body includes the content you see in the page
Each element is defined using tags, like this <div></div>
The attributes like class="wrapper" let us style elements in the CSS
-->
<div class="wrapper">
<div class="content" role="main">
<h1 class="title">Welcome to the new kUERI!</h1>
<img
src="https://cdn.glitch.global/de32b24f-28c6-472c-8631-3e7e06262397/Screenshot%202023-04-14%20at%2011.50.32.png?v=1681461199502"
class="illustration"
alt="Logo"
title=""
/>
<div class="instructions">
<h2>What can you do here?</h2>
<p>This is <strong>kUERI</strong>, a project that i made myself. You can
play games, search, follow the NickelOS project, and chill!</p>
<h2>NOTE: This isn't finished. If you don't see anything, then please wait for it to finish.</h2>
<a class="btn--remix" href="games">Games</a>
<a class="btn--remix" href="search">Search</a>
</div>
</div>
<p>
Prefer the old kUERI (ruggyTK)? Click <a href="https://ruggy.tk/oldsite/">here</a> to return to the (not as good) version!
</p>
</div>
<!-- The footer holds our remix button — you can keep or delete it ✂ -->
<footer class="footer">
<div class="links"></div>
<a
class=""
target="_top"
href="imports.html"
>
Embed credits
</a>
</footer>
</body>
</html>