diff options
author | William Harrington <kb0iic@berzerkula.org> | 2019-04-17 16:42:33 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2019-04-17 16:42:33 -0500 |
commit | 7b4bec1e2c6a787e44a9eecfc0353b1d86199eae (patch) | |
tree | f958c74333c925d8825e582d7a1afa718c6f6bd3 /public |
Initial commit
Diffstat (limited to 'public')
-rw-r--r-- | public/404.html | 14 | ||||
-rw-r--r-- | public/about.html | 14 | ||||
-rw-r--r-- | public/css/style.css | 4 | ||||
-rw-r--r-- | public/index.html | 14 |
4 files changed, 46 insertions, 0 deletions
diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..0f6b7a4 --- /dev/null +++ b/public/404.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, + initial-scale=1.0" /> + <meta http-equiv="X-UA-Compatible" content="ie=edge" /> + <link rel="stylesheet" href="./css/style.css"> + <title>Not Found</title> + </head> + <body> + <h1>404 Not Found</h1> + </body> +</html> diff --git a/public/about.html b/public/about.html new file mode 100644 index 0000000..7849d20 --- /dev/null +++ b/public/about.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, + initial-scale=1.0" /> + <meta http-equiv="X-UA-Compatible" content="ie=edge" /> + <link rel="stylesheet" href="./css/style.css"> + <title>About</title> + </head> + <body> + <h1>About</h1> + </body> +</html> diff --git a/public/css/style.css b/public/css/style.css new file mode 100644 index 0000000..de2aca1 --- /dev/null +++ b/public/css/style.css @@ -0,0 +1,4 @@ +body { + background: #333; + color: #fff; +} diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..c892be1 --- /dev/null +++ b/public/index.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, + initial-scale=1.0" /> + <meta http-equiv="X-UA-Compatible" content="ie=edge" /> + <link rel="stylesheet" href="./css/style.css"> + <title>Homepage</title> + </head> + <body> + <h1>Welcome to the homepage</h1> + </body> +</html> |