21 lines
394 B
HTML
21 lines
394 B
HTML
<!doctype html>
|
|
<html>
|
|
<title>Animation Example</title>
|
|
<link rel="stylesheet" type="text/css" href="./css/app.css" />
|
|
<style>
|
|
animate-app {
|
|
display:block;
|
|
position:fixed;
|
|
top:0;
|
|
left:0;
|
|
right:0;
|
|
bottom:0;
|
|
padding:50px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<animate-app>Loading...</animate-app>
|
|
<script src="../bootstrap.js"></script>
|
|
</body>
|
|
</html>
|