diff options
| -rw-r--r-- | index.html | 12 | ||||
| -rw-r--r-- | style.css | 7 |
2 files changed, 19 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..4c4c7f7 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ +<!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"> + <title>Platreum</title> +</head> +<body> +<h1>Hello World!</h1> +</body> +</html>
\ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..c693bcc --- /dev/null +++ b/style.css @@ -0,0 +1,7 @@ +body { + font-family: Arial, Helvetica, sans-serif; + padding: 0; + margin: 0; + background: #333; + color: white +} |
