add header navlinks in html
This commit is contained in:
parent
c7332459b9
commit
05d19c0a30
9 changed files with 61 additions and 2 deletions
|
@ -10,6 +10,12 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">/home/stev</a></li>
|
||||
<li><a href="/gemlog/index.html">~/logs</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<h1># I hate Microsoft</h1>
|
||||
<p>Yep, like a lot of people I hate Microsoft so I'll try to be a little specific.</p>
|
||||
<p>First of all, the only reason I still have Windows on my desktop is for gaming reasons and only that, most of what I do happens on GNU+Linux on my laptop which is not powerfull to play something more advanced than OSRS. I hadn't played on that desktop for a very long time because I no longer had a GPU but I found a very, very old GT240 at my parent's house to put in there so I started using it again... It was my first use of Windows in about two years and it was a pain!</p>
|
||||
|
|
|
@ -10,6 +10,12 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">/home/stev</a></li>
|
||||
<li><a href="/gemlog/index.html">~/logs</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<h1># I'm learning networking</h1>
|
||||
<p>I'm currently learning networking stuff to become a sysadmin on my own waiting for the formation to start. I'm looking at a free Coursera course and videos on Youtube and I'm having a blast learning all this but it makes me want to buy all kind of things that would be way overkill both for my wallet and for my home network...</p>
|
||||
</body>
|
||||
|
|
|
@ -10,6 +10,12 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">/home/stev</a></li>
|
||||
<li><a href="/gemlog/index.html">~/logs</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<h1># log index</h1>
|
||||
<p>Here will live gemlog posts about nothing and everything, I will rant a lot I thing, I could I not, you deserve entertainment!</p>
|
||||
<p>there's a list of ideas:</p>
|
||||
|
|
|
@ -10,6 +10,12 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">/home/stev</a></li>
|
||||
<li><a href="/gemlog/index.html">~/logs</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<pre>
|
||||
▄▀▀ ▄▀ █ ██▄ ▄▀▄ █▄ █ ██▀
|
||||
▄██ ▄ ▀▄█ █ █▄█ ▀▄▀ █ ▀█ █▄▄
|
||||
|
|
|
@ -10,6 +10,12 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">/home/stev</a></li>
|
||||
<li><a href="/gemlog/index.html">~/logs</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<h1># Current or finished projects</h1>
|
||||
<p>sorted in reverse chronological order so that the most recent projects appears first:</p>
|
||||
<h2>## 2023</h2>
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 750px;
|
||||
margin: auto;
|
||||
background: black;
|
||||
|
@ -32,3 +30,16 @@ pre {
|
|||
ul {
|
||||
margin: initial;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin-top: 20px;
|
||||
border-style: solid;
|
||||
color: lime;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
display: flex;
|
||||
}
|
||||
nav ul li {
|
||||
margin: 0% 2%;
|
||||
}
|
||||
|
|
|
@ -10,6 +10,12 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">/home/stev</a></li>
|
||||
<li><a href="/gemlog/index.html">~/logs</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</body>
|
||||
<footer>
|
||||
<hr>
|
||||
|
|
|
@ -10,3 +10,9 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">/home/stev</a></li>
|
||||
<li><a href="/gemlog/index.html">~/logs</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
|
|
@ -30,3 +30,9 @@ pre {
|
|||
ul {
|
||||
margin: initial;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin-top: 20px;
|
||||
border-style: solid;
|
||||
color: lime;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue