blob: 43533bbfb10bba427a2aa0db66dc4a89771fcf56 (
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
|
<!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>
<p> > The webserver was written using python </p>
<p> > Python with only* standard libraries, without flask (or anything similar) </p>
<p> > only 2 additional libraries are 'aiofiles' and 'htmlmin' </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>
|