about summary refs log tree commit diff
path: root/www/index.html
blob: 4b5907ff2611b95b812aba2778a5ffcb95a66008 (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
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
    <title> The YES's Page </title>
    <link rel="stylesheet" href="css/styles.css">
</head>
<body>
    <header>
        <div style="margin: auto; width: fit-content;"> <b> Welcome To The Mighty HTML Page </b> </div>
    </header>
    <div id="section-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 the shitty python code I wrote </p>
            <p> > Server does not use flask or any other similar python web frameworks </p>
            <p> > It primarily uses standard python libraries, with 1 library being an exception </p>
            <p> > <i> aiofiles </i> - for asynchronous file I/O </p>
        </section>
        <section>
            <h1> Where can I see the shitty python code you wrote? </h1>
            <p> > You can check the shitty python code I wrote at my GitHub </p>
            <p> > here's comically large button to help you navigate to there </p>
            <p style="padding-top: 12px;text-align: center">
                <button id="git-butt" class="btn btn-success" onclick="window.open('https://github.com/UltraQbik/httpy','_blank')"> OPEN GITHUB NOW </button>
            </p>
        </section>
    </div>
    <footer>
        <p> Hehe <i>foot</i>er </p>
    </footer>
</body>
</html>