29 lines
569 B
HTML
29 lines
569 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Friendolls</title>
|
|
<script>
|
|
document.addEventListener("contextmenu", function (e) {
|
|
e.preventDefault();
|
|
});
|
|
</script>
|
|
</head>
|
|
<body style="width: 100%; height: 100%">
|
|
<div id="splash"></div>
|
|
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
}
|
|
#splash {
|
|
background-image: url("/splash-dev.jpeg");
|
|
background-size: cover;
|
|
background-position: center;
|
|
width: 800px;
|
|
height: 400px;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html>
|