diff options
Diffstat (limited to 'dvd-logo/index.html')
-rw-r--r-- | dvd-logo/index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dvd-logo/index.html b/dvd-logo/index.html new file mode 100644 index 0000000..fc07484 --- /dev/null +++ b/dvd-logo/index.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> + +<html> + <head> + <title>DVD MADNESS</title> + <style> + body { + margin: 0; + background: black; + height: 100%; + width: 100%; + } + #dvd-logo { + width: 200px; + position: absolute; + left: -200px; /* So that logo doesn't flash at top left corner when document loads */ + top: -200px; + } + </style> + </head> + <body> + <img id="dvd-logo" src="images/dvd-logo.png"> + <script src="js/script.js"></script> + </body> +</html> |