18 lines
609 B
Plaintext
18 lines
609 B
Plaintext
|
|
#!/usr/bin/python
|
||
|
|
import random
|
||
|
|
words = ["World", "zoomer", "eater", "subwoofer", "yeeter", "zanger", "zooper", "zoonick", "zooshi", "auioshir"]
|
||
|
|
colors = ["black", "grey"]
|
||
|
|
print("Status: 200 OK")
|
||
|
|
print("Content-Type: text/html; charset=UTF-8")
|
||
|
|
print("Cache-Control: no-cache")
|
||
|
|
print("")
|
||
|
|
print(f"""
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
|
<body style=\"background-color: {random.choice(colors)}\">
|
||
|
|
<i><u><center><h1 style=\"background-color: {random.choice(colors)}; color: green\"> Hello {random.choice(words)}!</h1></center></u></i>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
""")
|