blob: fa64cdc7cd1fee5eec5039c6bf9f99d6acbfb65f (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Linux index</title>
<link rel="stylesheet" href="../styles.css">
<link rel="icon" href="../Images/favi.png" type="image/x-icon">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="../index.html">Home</a></li>
<li><a href="../links.html">Links</a></li>
<li><a href="../projects.html">Projects</a></li>
<li><a href="../contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main class="description">
<h1>Linux articles</h1>
<p>Due to the fact I plan to write more articles about LinuxI have decided to make an index to preper for the future when I do write more.</p>
<section class="posts">
<h2>Infomation about Linux</h2>
<ul>
<li>05-08-2024 - <a href="linux/2LinuxFileHierarchy">Linux File Hierarchy</a></li>
</ul>
<h2>Tutorials</h2>
<ul>
<li>21-07-2024 - <a href="linux/1CleaningArchLinux">How To Clean Arch Linux</a></li>
</ul>
</main>
</body>
</html>
|