-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog.html
62 lines (57 loc) · 1.67 KB
/
blog.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
<!DOCTYPE html>
<html>
<head>
<title>Cbass92 - Home</title>
<style>
.container {
display: flex;
flex-direction: row;
max-width: 70%;
margin: auto;
}
.about-me {
flex: 1;
margin: 20px;
}
</style>
<link rel="stylesheet" href="main-styles.css">
<link rel="stylesheet" href="tracks.css">
<script src="https://unpkg.com/cursor-effects@latest/dist/browser.js"></script>
<script>
window.addEventListener("load", (event) => {
new cursoreffects.fairyDustCursor();
});
</script>
</head>
<body>
<script src="oneko.js"></script>
<header>
<img width=15% height=auto src="welcome.gif" />
<link href="mailto:[email protected]" rel="me authn">
</header>
<marquee scrollamount="20"><img src="construction.gif" /></marquee>
<table class="navbar">
<tr>
<td><a href=index.html>Home</a></td>
<td><a href=projects.html>My Links</a></td>
</tr>
</table>
<div class="container">
<div class="about-me">
<table>
<tr id="nonpost"><td><h1>Blog</h1></td></tr>
<tr>
<td>
<h2>Welcome to the blog section!</h2>
<p>I will (probably) write stuff here soon about current projects I'm working on or tutorials on how to do stuff. Come back soon!</p>
</td>
</tr>
</table>
</div>
</div>
<img src="flames.gif" style="width: 50%; height: auto; display: block;
margin-left: auto;
margin-right: auto;" />
<script async defer src="https://buttons.github.io/buttons.js" type="text/javascript"></script>
</body>
</html>