-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
executable file
·43 lines (43 loc) · 1.87 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="HandheldFriendly" content="true"/>
<meta name="MobileOptimized" content="320"/>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width, user-scalable=no"/>
<title><theBlog/> - About</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="grid">
<header class="header">
<a href="index.html">
<h1><theBlog/></h1>
</a>
<hr>
</header>
<main class="main">
<div>
<h2>About this blog</h2>
<p>
This blog is mostly a collection of my thoughts on programming and open-source, as well as other
scattered thoughts and ideas.
The goal is to keep the blog as minimal as possible by only using basic HTML, very little CSS and no Javascript.
It is meant to be in stark contrast to modern web pages, which have gotten quite bloated and full of trackers, ads
and large front-end frameworks, causing trouble even for modern hardware/internet connections.<br>
<br>
This blog is hosted on GitHub Pages and is therefore open-source as well. All of the opinions expressed in this blog
are my own and do not represent those of my employer, my friends or anyone else.
<br>
</p>
<a href="https://github.com/maximAtanasov/theBlog" target="_">GitHub page</a>
</div>
</main>
<aside class="right">
</aside>
<br>
<footer class="footer">
<hr>
<br>
<a href="about.html">About</a> | <a href="contact.html">Contact</a>
</footer>
</body>
</html>