adm-temp-page/static/index.html

40 wiersze
512 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
}
.row::after {
content: "";
clear: both;
display: table;
}
body {
background-color: #ffffff;
}
.logo {
width: 90vw;
height: 80vh;
background: url("/index.png") no-repeat;
background-size: contain;
display: block;
}
</style>
</head>
<body>
<div class="test">
<div class="logo"></div>
</div>
</body>
</html>