-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
67 lines (63 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Description" content="Lulzx's website">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="preload" href="./css/paper.min.css" as="style">
<link rel="stylesheet" href="./css/paper.min.css">
<title>Lulzx</title>
<style>
body {
background-image: url("./img/inverted_geometry.png")
}
</style>
<link rel='manifest' href='./manifest.json'>
<script type="module" src="https://cdn.jsdelivr.net/npm/@pwabuilder/pwainstall@latest/dist/pwa-install.min.js"></script>
</head>
<body>
<nav class="border fixed split-nav">
<div class="nav-brand">
<h3><a href="./index.html">Lulzx</a></h3>
</div>
<div class="collapsible">
<input id="collapsible1" type="checkbox" name="collapsible1">
<button>
<label for="collapsible1">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</label>
</button>
<div class="collapsible-body">
<ul class="inline">
<li><a href="./projects.html">Projects</a></li>
<li><a href="./hire.html">Hire</a></li>
<li><a href="./blog/">Blog</a></li>
<li><a href="./stuff.html">More Links</a></li>
</ul>
</div>
</div>
</nav>
<div class="paper container">
<center>
<h1>Welcome! 😃</h1>
<img src="./img/swing.webp" alt="hey there">
</center>
<div class="row flex-center child-borders">
<a class='paper-btn margin' href='./projects.html'>Projects</a>
<a class='paper-btn margin' href='https://t.me/lulzx'>Text me</a>
<a class='paper-btn margin' href='./blog/'>Blog</a>
<a href="https://github.com/lulzx" target="_blank" rel="noreferrer" class="paper-btn margin">Github</a>
</div>
<p align=center>Doing what nobody does to achieve what nobody has!</p>
</div>
<script type="module">
// This is the "Offline copy of pages" service worker
import 'https://cdn.jsdelivr.net/npm/@pwabuilder/pwaupdate';
const el = document.createElement('pwa-update');
document.body.appendChild(el);
</script>
</body>
</html>