blob: 54c2684be7ef57bcace1a9079c85bf58539cdb1e (
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
37
38
|
<!DOCTYPE html>
<html lang="en">
<head>
<title> The YES's Page </title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header> <b> Welcome To The Mighty HTML Page </b> </header>
<div id="cool-div">
<section style="padding-top: 10px">
<h1> What is this? </h1>
<p> > This is an HTML page! </p>
<p> > It exists! </p>
</section>
<section>
<h1> Why does this exist? </h1>
<p> > Funny haha </p>
<p> > I'm learning how to webpage from nothing </p>
</section>
<section>
<h1> What is it running? </h1>
<p> > This server is run by my shitty python code </p>
<p> > Server does not use flask or any other similar python web frameworks </p>
<p> > It primarily uses standard python libraries, with 2 libraries being an exception </p>
<p> > <i> aiofiles </i> - for asynchronous file I/O </p>
<p> > <i> htmlmin </i> - for making html page slightly smaller (along with gzip) </p>
</section>
<section>
<h1> Useless button section? </h1>
<button id="cool-butt"> <b> Useless button section. </b> </button>
</section>
</div>
<footer>
<p> Hehe <i>foot</i>er </p>
<p> P.S. CSS is a mess :< </p>
</footer>
</body>
</html>
|