diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..43533bb --- /dev/null +++ b/index.html @@ -0,0 +1,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> |