diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/index.html | 8 | ||||
-rw-r--r-- | web/style.css | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html index e69de29..b789672 100644 --- a/web/index.html +++ b/web/index.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<html> + <head> + <title>Test</title> + <meta charset="UTF-8"> + </head> + <body>This is a test page</body> +</html> diff --git a/web/style.css b/web/style.css index e69de29..69f4ad1 100644 --- a/web/style.css +++ b/web/style.css @@ -0,0 +1,7 @@ +body { + background-color:#000000; +} + +p{ + color: white; +} |