33 lines
861 B
HTML
33 lines
861 B
HTML
<html>
|
|
<head>
|
|
<script src="jquery/jquery-3.3.1.min.js"></script>
|
|
<meta http-equiv="refresh" content="7;url=shutdown.html" />
|
|
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
body {
|
|
display: table;
|
|
background-color: #00A9DA;
|
|
}
|
|
.my-block {
|
|
text-align: center;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
.orange {
|
|
color: orange;
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<embed src="/assets/media/music/shutdown.mp3" width="0" height="0" loop="false" autostart="true" hidden="true" />
|
|
<div class="my-block">
|
|
<img src="/assets/media/images/goodbye.gif">
|
|
</div>
|
|
</body>
|
|
</html>
|