-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 771 Bytes
/
index.html
File metadata and controls
27 lines (26 loc) · 771 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>
Wiktor's Homepage
</title>
<style>
* {
font-family: Consolas;
}
@keyframes spin {
0% {rotate: 0deg;}
100% {rotate: 360deg;}
}
</style>
</head>
<body>
<h1>Welcome to my page</h1>
<p>There's nothing really here at the moment...</p>
<p>Want to see some <a href="js_examples/index.html">JS Examples</a>?</p>
<p><a href="html_playground/index.html">HTML Playground</a></p>
<p><a href="invalid/">404 Screen</a></p>
<p><a href="muNO/index.html">μNO</a></p>
<p><a href="MeTMT/index.html">MetaTree</a></p>
<p style="animation-name: spin; animation-duration: 15s; width: 1em; animation-iteration-count: infinite; animation-timing-function:cubic-bezier(1, 0, 1, 0);">speen</p>
</html>