-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (61 loc) · 1.95 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
<!DOCTYPE html>
<html>
<head>
<style>
#snackbar {
visibility: hidden;
min-width: 50px;
margin-left: -25px;
background-color: #282a36;
color: #fff;
text-align: center;
border-radius: 10px;
padding: 16px;
position: fixed;
z-index: 1;
left: 50%;
bottom: 30px;
}
#snackbar.show {
visibility: visible;
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
</style>
<link rel="stylesheet" href="styles.css" />
<script
src="https://kit.fontawesome.com/b214d16b30.js"
crossorigin="anonymous"
></script>
<script src="functions.js"></script>
<script>
var clicks = 0;
</script>
<title>fowlis | Home</title>
</head>
<body>
<aside class="sidebar">
<p style="font-size: 18px !important">fowlis.github.io</p>
<a href="index.html"><i class="fa fa-fw fa-home"></i> Home</a>
<a href="aboutme.html"><i class="fa fa-fw fa-user"></i> About Me</a>
<a href="./blog/blog.html"><i class="fa fa-fw fa-book"></i> Blog</a>
<a href="projects.html"><i class="fa fa-fw fa-wrench"></i> Projects</a>
<a href="contact.html"><i class="fa fa-fw fa-envelope"></i> Contact</a>
<a href="https://github.com/fowlis" target="_blank"
><i class="fa fa-fw fa-github"></i> GitHub</a
>
<p class="sidebar-bottom">totally fake copyright text™</p>
</aside>
<div style="padding: 10px"></div>
<main class="content">
<h1>Welcome to my crap website :)</h1>
<p>
Nothing much on this page. The other pages have more stuff on them!<br /><br />
<button onclick="meow()">=^● ⋏ ●^=</button><br /><br />
<button onclick="clickCounter()">Click me!</button>
<center><p id="clicks"></p></center>
</p>
<div id="snackbar">Meow!</div>
</main>
</body>
</html>