-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (62 loc) · 4.3 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
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>Home | chococaker</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" />
<link rel="stylesheet" href="/style/main.css" />
<link rel="stylesheet" href="/style/nav.css" />
<link rel="shortcut icon" href="/assets/img/favicon-32x32.png" />
</head>
<body>
<nav>
<ul>
<li id="home-link"><a href="/index.html">[<u>H</u>]OME</a></li>
<li id="about-link"><a href="/about.html">[<u>A</u>]BOUT</a></li>
<li id="blog-link"><a href="/blog.html">[<u>B</u>]LOG</a></li>
<li id="docs-link"><a href="/docs.html">[<u>D</u>]OCS</a></li>
<li id="learn-link"><a href="/learn/learn.html">[<u>L</u>]EARN</a></li>
</ul>
</nav>
<header>
<h1>I’m <span class="very-strong">chococaker</span>.</h1>
<h2>Part-time computer nerd, full-time cake muncher.</h2>
<br />
<ul id="social-bar">
<li><a href="https://github.com/chococaker" target="_blank"><img src="/assets/img/github-logo-white-128x128.png" alt="GitHub Logo" title="GitHub/chococaker" /></a></li>
</ul>
</header>
<main>
<h1>About Me</h1>
<p>Check out my <a href="about.html">About Me</a> page if you haven’t already! I’m more than just my projects.</p>
<p>Of course, if you’re just here to see my (admittedly few) projects, keep scrolling.</p>
<br /><hr /><br />
<h1>Projects</h1>
<p>I don’t have many projects yet, but that’s because I’m being productive IRL. Anyway, have a look.</p>
<div class="section-wrapper">
<section>
<h2><img src="/assets/img/java-logo-512x512.png" class="java-bruh" title="Java" alt="Java Logo" />jjason <span class="version-marker">v1.0</span></h2>
<span class="link-bar"><a href="/docs/jjason.html" target="_blank">DOCS</a> | <a href="https://github.com/chococaker/JJason" target="_blank">SOURCE CODE</a></span>
<p>A small JSON de/serialisation library for Java. It’s named that way because it’s <u>J</u>ava <u>J</u>a<u>son</u>. Get it?</p>
<p>It uses iteration to process the JSON. That’s a pretty fast way to do it, but what I’m really going for here is to maintain functionality AND tininess of the binaries.</p>
</section>
<section>
<h2><img src="/assets/img/cpp-logo-512x512.png" title="C++" alt="C++ Logo" />warzonecivilisation <span class="version-marker">w.i.p.</span></h2>
<p>An online multiplayer board game where you take command of a civilisation and fight all of your friends. With troops, production buildings, eras and unique materials, this game is great for having fun with your friends as you destroy each other’s hard-worked earnings.</p>
<p>Credit to <a href="https://github.com/SublimedLime" target="_blank">SublimedLime</a> for the original rules and game concept. Modified by chococaker.</p>
</section>
<section>
<h2><img src="/assets/img/javascript-logo-512x512.png" title="JavaScript" alt="JavaScript Logo" />chococaker website <span class="version-marker">v.idk</span></h2>
<span class="link-bar"><a href="https://github.com/chococaker/chococaker.github.io" target="_blank">SOURCE CODE</a></span>
<p>This website. I know, it’s very detailed and complicated. I’m not a frontend person. I built this site so that I could claim the domain more than anything.</p>
<p>What we have here is just a static webpage built from the ground up with some good ol’ pure HTML, CSS, and JavaScript.</p>
</section>
</div>
</main>
<footer>
chococaker © 2024
</footer>
<script src="/script/nav.js" type="text/javascript"></script>
</body>
</html>