-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 1.36 KB
/
index.html
File metadata and controls
36 lines (33 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<title>nikee_ui</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="topbar">
<span id="logo">nikee_ui</span>
<span><a href="#home">home</a></span>
<span><a href="#about">about</a></span>
<span id="version">current: v1.0.0</span>
</div>
<div class="bottom">
<div id="about">
<p>
<b>nikee_ui</b> is a small project where i test and publish different UI stuff written all in JS, HTML, CSS. The code is all available at <a href="https://r.nikee.dev/nikee_ui">repo page</a>
</p>
</div>
<div class="pages">
<p style="font-weight:600">pages:</p>
<ul>
<li><a href="pages/notification">notification</a></li>
<li><a href="pages/interactive">interactive</a></li>
</ul>
</div>
</div>
<script type="module" src="script.js"></script>
</body>
</html>