Nice page! And surprisingly, somewhat responsive.
Though, i have noticed in your code that you keep reusing style tags, like this (this is just an example) :
Code:
<style>
a
{ color : blue }
</style>
<style>
#container
{ display : flex }
</style>
When you could easily just write this :
Code:
<style>
a
{ color : blue }
#container
{ display : flex }
</style>
That looks a little bit better, innit? (I'm turning British

)
I know Spacehey does this thing where you have to use multiple style tags in order for the CSS to work (at least in my experience), but it's not needed here.
Anyways, i have been working on my website, once again, and it's 75% done, i think. Here is a little showcase of the blog!
Still not really done yet, but i like how it looks. Don't mind the stuff in the container, i just like to put stupid things as my placeholders

Been having a bit of trouble, though. So, i was inspired
by this layout, and decided to study its code. As you can see, the welcome message is here. And once you click on another link, it dissapears.
But i just cannot get that to work. That "hi" in the container is actually supposed to be the welcome message, and the stuff below is the content that is supposed to show up instead of the welcome message. Man...
