diff options
author | Marvin Borner | 2023-12-28 15:26:08 +0100 |
---|---|---|
committer | Marvin Borner | 2023-12-28 15:26:17 +0100 |
commit | 0f5df7855516df49c17c7bc1436d37b714242062 (patch) | |
tree | adc524292476dec6b575de7d23f0ba3e3b27e1bd | |
parent | 8d4ecf3828a3109826520d03758d62a20fb84e53 (diff) |
AAH
-rw-r--r-- | index.html | 13 | ||||
-rw-r--r-- | script.js | 0 | ||||
-rw-r--r-- | style.css | 7 |
3 files changed, 19 insertions, 1 deletions
@@ -3,9 +3,20 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width" /> + <link + rel="stylesheet" + href="style.css" + type="text/css" + media="screen" + charset="utf-8" + /> <title>LARS</title> </head> <body> - Ludicrous Adventures of Ridiculous Shenanigans + <div> + <h1>Ludicrous Adventures of Ridiculous Shenanigans</h1> + <h1>#1 CTF team</h1> + </div> + <script src="script.js"></script> </body> </html> diff --git a/script.js b/script.js new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/script.js diff --git a/style.css b/style.css new file mode 100644 index 0000000..60015e8 --- /dev/null +++ b/style.css @@ -0,0 +1,7 @@ +html, body { + background-color: #000; + color: #fff; + padding: 0; + margin: 0; + text-align: center; +} |