42 lines
887 B
HTML
42 lines
887 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<base href="/">
|
|
<meta charset="utf-8">
|
|
<title>Ofb1</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
<style>
|
|
.loader-background{
|
|
background-color: rgb(0, 188, 212);
|
|
position: fixed;
|
|
left:0px;
|
|
top:0px;
|
|
height: 100%;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
.loader {
|
|
color: #ffffff;
|
|
margin: 100px auto;
|
|
position: relative;
|
|
font-size: 24px;
|
|
}
|
|
.loader-small{
|
|
color: #ffffff;
|
|
margin: 20px auto;
|
|
position: relative;
|
|
font-size: 18px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<app-root>
|
|
<div class="loader-background">
|
|
<div class="loader">Old Fashion Baptist</div>
|
|
<div class="loader-small">Please Wait...</div>
|
|
</div>
|
|
</app-root>
|
|
</body>
|
|
</html> |