diff options
| author | Seth Flynn <[email protected]> | 2021-06-09 01:07:07 -0400 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2021-06-09 02:07:36 -0400 |
| commit | e754feb4c8869eb80020df2427f32cf10bbd4183 (patch) | |
| tree | b127d23b3097bffa4aa8af18e703aa81c2172a37 | |
initial commit
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | LICENSE | 21 | ||||
| -rw-r--r-- | src/404.html | 14 | ||||
| -rw-r--r-- | src/css/guzzle.css | 4 | ||||
| -rw-r--r-- | src/favicon.ico | bin | 0 -> 15406 bytes | |||
| -rw-r--r-- | src/index.html | 22 |
6 files changed, 62 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a9b9cd5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +push @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Seth Flynn + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/404.html b/src/404.html new file mode 100644 index 0000000..724b78f --- /dev/null +++ b/src/404.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <title>guzzle guzzle</title> + <meta name="description" content="seth's server for random stuff" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="stylesheet" href="css/guzzle.css" /> + </head> + <body> + <p>uh that file isn't here. maybe try again? (404 error)</p> + </body> +</html> diff --git a/src/css/guzzle.css b/src/css/guzzle.css new file mode 100644 index 0000000..52caac2 --- /dev/null +++ b/src/css/guzzle.css @@ -0,0 +1,4 @@ +body { + background-color: tan; + font-family: monospace; +} diff --git a/src/favicon.ico b/src/favicon.ico Binary files differnew file mode 100644 index 0000000..4880f14 --- /dev/null +++ b/src/favicon.ico diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..5bde0b6 --- /dev/null +++ b/src/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <title>guzzle guzzle</title> + <meta name="description" content="seth's server for random stuff" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="stylesheet" href="css/guzzle.css" /> + </head> + <body> + <div id="content"> + <p id="p1">i'm not sure why i wasted my money on this...have fun i guess</p> + </div> + <div id="servers"> + <h1 id="header2">servers currently running:</h1> + <ul id="list"> + <li>minecraft (fabric on 1.17)</li> + </ul> + </div> + </body> +</html> |
