From dbbb7a0633104fb4da42da76d238562edb39beb4 Mon Sep 17 00:00:00 2001 From: thatscringebro Date: Wed, 11 Oct 2023 17:32:55 -0400 Subject: [PATCH] website --- index.html | 145 +++++++++++++++++++++++++++++++++++++++++++++++++++++ serve.py | 11 ++++ 2 files changed, 156 insertions(+) create mode 100644 index.html create mode 100644 serve.py diff --git a/index.html b/index.html new file mode 100644 index 0000000..44eb2a1 --- /dev/null +++ b/index.html @@ -0,0 +1,145 @@ + + + + + + ASCII RACER + + + +
+

+
+   _____    __________________ .___.___  __________    _____  _________ _____________________
+  /  _  \  /   _____/\_   ___ \|   |   | \______   \  /  _  \ \_   ___ \\_   _____/\______   \
+ /  /_\  \ \_____  \ /    \  \/|   |   |  |       _/ /  /_\  \/    \  \/ |    __)_  |       _/
+/    |    \/        \\     \___|   |   |  |    |   \/    |    \     \____|        \ |    |   \
+\____|__  /_______  / \______  /___|___|  |____|_  /\____|__  /\______  /_______  / |____|_  /
+        \/        \/         \/                  \/         \/        \/        \/         \/
+            
+

+
+
+

About the Game

+

ASCII RACER is an exciting top-down racing game created entirely with ASCII characters. Race against the clock and your opponents on a track filled with challenges and obstacles.

+
+
+

Game Media

+
+ Screenshot 1 +
+
+ Screenshot 2 +
+
+ +
+
+
+

Download the Game

+

Download ASCII RACER now and start racing in a world of ASCII art!

+ Download Now +
+ + + + diff --git a/serve.py b/serve.py new file mode 100644 index 0000000..a4eaff8 --- /dev/null +++ b/serve.py @@ -0,0 +1,11 @@ +import http.server +import socketserver + +PORT = 8002 + +Handler = http.server.SimpleHTTPRequestHandler + +httpd = socketserver.TCPServer(("", PORT), Handler) + +print("Serving at http://localhost:{}".format(PORT)) +httpd.serve_forever()