-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 2.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Personal website for pikapower9080">
<meta name="Keywords" content="thereal_pika, pikapower9080">
<meta name="author" content="pikapower9080">
<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=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="portfolio.css">
<link rel="stylesheet" href="https://unpkg.com/tippy.js@6/animations/shift-away-subtle.css">
<title>pikarocks.dev</title>
<link rel="icon" href="/favicon.ico">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QDVLYLPGDW"></script>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://unpkg.com/tippy.js@6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QDVLYLPGDW');
</script>
</head>
<body>
<main>
<section>
<h1 id="title">pikarocks.dev</h1>
<hr>
<a href="about.html"><button>About</button></a>
<a href="tools-and-toys.html"><button id="projects">Tools & Toys</button></a>
<a href="services.html"><button id="services">Services</button></a>
<a href="https://github.com/pikapower9080"><button>GitHub</button></a>
<a href="mailto:[email protected]"><button id="email">Contact</button></a>
</section>
</main>
<script>
tippy("#services", {
content: "Self-hosted services I provide for anyone to use",
placement: "top",
animation: "shift-away-subtle"
})
tippy("#projects", {
content: "Small projects I've worked on that are hosted on this site",
placement: "top",
animation: "shift-away-subtle"
})
tippy("#email", {
content: "Talk to me about anything",
placement: "top",
animation: "shift-away-subtle"
})
</script>
</body>
</html>