KawAnime/index.html

29 lines
500 B
HTML
Raw Normal View History

2016-11-21 14:33:22 +00:00
<!DOCTYPE html>
2017-04-15 14:16:14 +00:00
<html>
<head>
<meta charset="UTF-8">
<title>Electronuxt</title>
<style>
html, body {
margin: 0;
padding: 0;
background: #333;
position: relative;
height: 100%;
width: 100%;
}
h1 {
font-family: sans-serif;
color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -70%);
}
</style>
</head>
<body>
<h1>Loading application...</h1>
</body>
2016-11-21 14:33:22 +00:00
</html>