28 lines
469 B
HTML
28 lines
469 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Avocado</title>
|
|
<style>
|
|
html, body {
|
|
background-color: #333333;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
body {
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
.app, canvas {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="app"></div>
|
|
</body>
|
|
</html>
|