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
54
55
56
57
58
59
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='stylesheet' type='text/css' href="../style.css">
<title>Website Created!</title>
</head>
<body>
<a id="header-link" href="../index.html">Suleyman Farajli</a>
<hr class="separator">
<div class="menu">
<a class="menu_item" href="../index.html">Home/</a>
<a class="menu_item" href="../software/software.html">Software/</a>
<a class="menu_item" href="../wiki/wiki.html">Wiki/</a>
<a class="menu_item right" href="https://git.farajli.net">Git</a>
</div>
<h2>I have a website!</h2>
<p>As of June 13th 2024, the best website on the internet
has officially been created.
<br>
<br>
This site is not made
by using one of those fancy and bloated site generators or any garbage like that,
it was created, quite surprisingly, writing HTML and CSS, like it is supposed to
be, tough it is a little inefficient, error-prone and a pain
writing HTML and adding boilerplate
code to each file, thus it's quite probable that I shall write a small program to
do that automatically for me in the future, but that program wouldn't be the same as bloated site
generators, in fact, it'd basically be the same as manual way of writing HTML.
<br>
Here are some of the advantages of my website compared to a lot of contemporary ones.
<ul>
<li>Doesn't fill your entire ram</li>
<li>Doesn't have ads, tracker or unnecessary JavaScript </li>
<li>Loads <span class="color1"><strong>Fast</strong></span>!</li>
</ul>
<p>
As of now, there isn't that much of content here, but I
will probably add a lot more.
</p>
<p id="copyleft"><br>copyleft (c) 2024 Suleyman Farajli</p>
</body>
</html>
|