This commit is contained in:
2024-06-16 15:56:19 +02:00
parent 6d3b4535cb
commit b766b9f775
5 changed files with 83 additions and 46 deletions

View File

@@ -1,11 +1,5 @@
<!DOCTYPE html>
<html lang="en"> <link type="text/css" rel="Stylesheet" href="../main.css" />
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>init</title>
</head>
<body>
<h1>init</h1> <h1>init</h1>
<p>At the time of writing this i'm 27/28 y/o living near Ghent (at my parents since house prices are fucked atm). <p>At the time of writing this i'm 27/28 y/o living near Ghent (at my parents since house prices are fucked atm).
My current interests are doing something with this site, journaling (kindof) and glsl shaders. My current interests are doing something with this site, journaling (kindof) and glsl shaders.
@@ -33,5 +27,5 @@
<p>so thats why i feel conflicted, i should add some screenshots here aswell, which will be for later. Still an amazing game, even if i didn't like act2, and i would highly recommend people playing at least act1, for whatever price tag a AAA level game is worth to you because i feel like it's on that level of enjoyment (or should be, a lot of 3a games aren't that enjoyable to me anymore :/)</p> <p>so thats why i feel conflicted, i should add some screenshots here aswell, which will be for later. Still an amazing game, even if i didn't like act2, and i would highly recommend people playing at least act1, for whatever price tag a AAA level game is worth to you because i feel like it's on that level of enjoyment (or should be, a lot of 3a games aren't that enjoyable to me anymore :/)</p>
</body>
</html> <a href="../menu.html" target="main">RETURN</a>

9
home.html Normal file
View File

@@ -0,0 +1,9 @@
<link type="text/css" rel="Stylesheet" href="../main.css" />
<p>
I'm beppe (sometimes i go by bvanroll or beppevn) and this is my website. My interest lie mainly with things related to technology, gaming, music or random facts i learn (for example how cows apparently don't have front upper teeth).
Most of the stuff on this site will probably be related to this.
</p>
<h2>days</h2>
<p>todo: write summary of what this is here</p>

View File

@@ -5,23 +5,23 @@
<meta name="viewport" content="width=device-width"> <meta name="viewport" content="width=device-width">
<title>beppe.online</title> <title>beppe.online</title>
<!--- <title>bvanroll.neocities</title> ---> <!--- <title>bvanroll.neocities</title> --->
<link rel="stylesheet" href="main.css">
<script> <script>
</script> </script>
</head> </head>
<body> <body>
<div class="header">
<h1> <h1>
Hi beppe.online
</h1> </h1>
<p> <nav>
I'm beppe (sometimes i go by bvanroll or beppevn) and this is my website. My interest lie mainly with things related to technology, gaming, music or random facts i learn (for example how cows apparently don't have front upper teeth). <ul class="navbar_links">
Most of the stuff on this site will probably be related to this. <li class="navbar_link" ><a href="home.html" target="main">home</a></li>
</p> <li class="navbar_link" ><a href="menu.html" target="main">days</a></li>
<h2>days</h2>
<p>todo: write summary of what this is here</p>
<ul id="days" onLoad="">
<li><a href="days/16-06-24.html">16-06-24</a></li>
</ul> </ul>
</nav>
</div>
<iframe src="home.html" name="main" title="main" class="main_view"></iframe>
</body> </body>
</html> </html>

29
main.css Normal file
View File

@@ -0,0 +1,29 @@
body {
font-family: "arial";
background-color: #daf7a6;
display: grid;
}
* {
font-family:"arial"
}
.header {
height: 10vh;
float: left;
}
.main_view {
width: 100vw;
height: 70vh;
margin-top: 10vh;
overflow-y: scroll;
}
.navbar_links {
display: grid;
grid-template-columns: auto auto;
}
.navbar_link {
}

5
menu.html Normal file
View File

@@ -0,0 +1,5 @@
<link type="text/css" rel="Stylesheet" href="../main.css" />
<ul id="days" onLoad="">
<li><a href="days/16-06-24.html" target="main">16-06-24</a></li>
</ul>