simponic.xyz/dvd-logo/index.html

26 lines
518 B
HTML
Raw Normal View History

2022-02-18 19:08:34 -05:00
<!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>