diff options
-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; +} |