pixelplanet/deployment/updatemsg/update.html
2020-01-02 17:58:06 +01:00

35 lines
632 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
text-align: center;
}
p {
text-align: center;
}
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<h1>We are updating...</h1>
<p>will be back soon</p>
<div class="videoWrapper">
<iframe width="560" height="349" src="https://www.youtube.com/embed/pNfTK39k55U" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</body>
</html>