-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
68 lines (66 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<script>if('serviceWorker' in navigator){
navigator.serviceWorker.register('/sw.js',{scope:'/'}).then(function(){
console.log('Service worker registered. You\'re good to go! 🚀')
})
}
</script>
<script src="js/navbar.js"></script>
<link rel="manifest" href="manifest.json">
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=1, initial-scale=1,minimum-scale=1, maximum-scale=5, width=device-width">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="HandheldFriendly" content="true" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="description" content="Hello! This is my homepage on the Internet.">
<meta content="Phene's site" property="og:site_name">
<meta property="og:image" content="/icons/icon-512x512.png">
<meta name="theme-color" content="#12d5df">
<title>Phene's site</title>
<link href="/icons/favicon-32x32.png" rel="icon" type="image/png">
<link href="css/main.css" rel="stylesheet" type="text/css" />
<link rel="preload" as="font" href="https://fonts.googleapis.com/css2?family=Poppins&swap"
onload="this.onload=null;this.rel='stylesheet'" /><noscript>
<link href="https://fonts.googleapis.com/css2?family=Poppins&swap" rel="stylesheet">
</noscript>
<link rel="preload" as="font" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
onload="this.onload=null;this.rel='stylesheet'" /><noscript>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
</noscript>
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png">
<style>
a {
color: purple;
text-decoration: none;
}
</style>
</head>
<body light-mode="dark">
<div id="animated_div">
<div id="animated_div">
<div class="topnav" id="navBar">
<a href="https://phene.dev" class="active">Home</a>
<a href="mailto:[email protected]">Contact</a>
<a href="about/">About</a>
<a href="https://blog.phene.dev">Blog</a>
<a href="https://github.com/joebobbio/phene.dev">Open Source</a>
<a href="#" aria-label="Expand or collapse menu" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i></a>
</div>
<h1>Phene</h1>
<h2>Developer, gamer, and cat lover.</h2>
<br>
<button id="reallycoolbutton" class="button" onclick="window.location.replace('about/')">
<span>more about me</span>
</button>
<footer>
<div class="privacy" id="bottom">
<a href="privacy/">Privacy</a> - <a id="theToggle" aria-label="Toggle light mode" onclick="toggle_light_mode()" href="#" style="cursor:pointer">Light mode</a>
</div>
</footer>
</div>
<script src="js/theme.js"></script>
</body>
</html>