-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (114 loc) · 6.39 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<title>the404</title>
<meta name="theme-color" content="#800080">
<link rel="stylesheet" type="text/css" href="css/controls.css">
<link rel="stylesheet" type="text/css" href="css/sidenav.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/home.css">
<link rel="stylesheet" type="text/css" href="css/nav.css">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<script src="https://kit.fontawesome.com/a79a931136.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-firestore.js"></script>
</head>
<body class="theme-dark" onload="load()">
<div class="header">
<a href="https://the404.nl">
<div class="logo">THE404.NL</div>
</a>
<span class="navbar-toggle" id="navbar-toggle" onclick="showMainNav()">
<i class="open-icon fas fa-bars"></i>
<i class="close-icon fas fa-x"></i>
</span>
<div class="nav-wrapper" id="main-nav">
<a href="./index.html"><span class="nav-link active"><b>HOME</b></span></a>
<span class="spacer"><b>⋄</b></span>
<a href="./blog.html"><span class="nav-link"><b>BLOG</b></span></a>
<span class="spacer"><b>⋄</b></span>
<a href="./software.html"><span class="nav-link"><b>PROJECTS</b></span></a>
<span class="spacer"><b>⋄</b></span>
<a href="https://editor.the404.nl"><span class="nav-link"><b>EDITOR</b></span></a>
<span class="spacer"><b>⋄</b></span>
<a href="https://robotics.the404.nl"><span class="nav-link"><b>ROBOTICS</b></span></a>
</div>
</div>
<div class="content-wrapper">
<div class="content large">
<div class="blob wide noscale">
<h2 class="blob-header">Welcome to the404!</h2>
<p class="blob-description">
<span class="flavour">My name is Owen, and I am a software developer.</span>
<br>
<br>
Since high school, coding has been a hobby of mine, and on January 18th, 2018 I started <b class="four-oh-four">The404</b> as a place for me to host the projects I create.
<br>
<br>
I am experienced in web development, software, robotics, and 3D printing.
<br>
<br>
Below are some quick links to various parts of the site.
</p>
</div>
<div class="blob" onclick="location.href='./blog.html'">
<span class="blob-icon"><i class="fas fa-book"></i></span>
<h2 class="blob-header">Blog</h2>
<p class="blob-description">My words of wisdom...</p>
<a href="./blog.html"><button class="button"><span>Go</span></button></a>
</div>
<div class="blob" onclick="location.href='./software.html'">
<span class="blob-icon"><i class="fas fa-code"></i></span>
<h2 class="blob-header">Projects</h2>
<p class="blob-description">Archives of all my software projects, dating back to 2017.</p>
<a href="./software.html"><button class="button"><span>Go</span></button></a>
</div>
<div class="blob" onclick="location.href='https://robotics.the404.nl'">
<span class="blob-icon"><i class="fas fa-robot"></i></span>
<h2 class="blob-header">Robotics</h2>
<p class="blob-description">Lego Robotics Resource Hub: Example programs, instructions, and more.</p>
<a href="https://robotics.the404.nl"><button class="button"><span>Go</span></button></a>
</div>
<div class="blob" onclick="location.href='https://editor.the404.nl'">
<span class="blob-icon"><i class="fas fa-file-pen"></i></span>
<h2 class="blob-header">Editor</h2>
<p class="blob-description">404-Editor, an online collaborative code editor.</p>
<a href="https://editor.the404.nl"><button class="button"><span>Go</span></button></a>
</div>
<div class="blob" onclick="location.href='https://start.the404.nl'">
<span class="blob-icon"><i class="fas fa-newspaper"></i></span>
<h2 class="blob-header">Start Page</h2>
<p class="blob-description">404-Start, a customizable start page for your browser.</p>
<a href="https://start.the404.nl"><button class="button"><span>Go</span></button></a>
</div>
<div class="blob" onclick="location.href='./archive'">
<span class="blob-icon"><i class="fas fa-clock-rotate-left"></i></span>
<h2 class="blob-header">Archives</h2>
<p class="blob-description">Old pages and snapshots of The404's history.</p>
<a href="./archive"><button class="button"><span>Go</span></button></a>
</div>
</div>
<hr class="divider">
<div class="content small">
<div class="git-container">
<a href="https://github.com/the404devs"><h2 class="blob-header">Github Repositories</h2></a>
<div class="loader"></div>
</div>
</div>
</div>
<div class="footer subtle">
<span class="foot-text foot-text-big">the404.nl</span>
<span class="foot-text" onclick="location.href='admin.html'" id="version"></span>
<span class="foot-text" id="date"></span>
<span class="foot-text foot-text-small" id="time"></span>
</div>
<script type="text/javascript" src="js/birthday.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/git.js"></script>
</body>
</html>