This repository has been archived by the owner on Oct 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (51 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/style.css">
<link rel="shortcut icon" type="image/png" href="./assets/favicon.png"/>
<title>Home</title>
</head>
<body>
<nav id="navbar">
<a class="button" href="/">Home</a>
<a class="button" href="./blog.html">Blog</a>
<a class="button" href="./doc.html">Doc</a>
<a class="button" href="./about.html">About</a>
</nav>
<div id="data">
<h1>SiFl - Flying while keeping it simple.</h1>
<br/>
<p>
Welcome, have a nice stay. This website focuses on being simple yet efficient for providing information about me, programming, linux, automobiles and technology.
</p>
<br/>
<p>
The docs section is mostly for my personal use; however, you might find something useful there.
</p>
<br/>
<blockquote>
Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible you are, by definition, not smart enough to debug it.<br/>
<br/>
- Brian W. Kernighan and P. J. Plauger<br/>
The Elements of Programming Style
</blockquote>
<hr/>
<br/>
<h2>Other Info:</h2>
<br/>
<ul>
<li>This is an ad and tracker free static website with no JavaScript.</li>
<li>Source can be found at- https://github.com/jethi/website</li>
<li>Source code of this website is licensed under the ISC license.</li>
</ul>
<br/>
</div>
<footer>
<p id="bottomtext">
Learn Humility and have Gratitude 🌱
</p>
</footer>
</body>
</html>