62 lines
1.7 KiB
HTML
62 lines
1.7 KiB
HTML
```html
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Temple OS Boot</title>
|
|
<meta http-equiv="refresh" content="3; URL=home.html">
|
|
<style>
|
|
body {
|
|
background: black;
|
|
color: lime;
|
|
font-family: monospace;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
.boot-screen {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
user-select: none;
|
|
}
|
|
.ascii-art {
|
|
white-space: pre;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
line-height: 12px;
|
|
color: lime;
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
marquee {
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
color: lime;
|
|
margin-top: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="boot-screen">
|
|
<div class="ascii-art">
|
|
____ _ ____ _____ _____<br>
|
|
| _ \\ ___ ___ _ __ | |_ ___ _ __ _ _ | __ ) | ____| | ____|<br>
|
|
| | | |/ _ \\/ _ \\ '_ \\| __/ _ \\| '__| | | | | _ \\ | _| | _| <br>
|
|
| |_| | __/ __/ | | | || (_) | | | |_| | | |_) || |___ | |___ <br>
|
|
|____/ \\___|\\___|_| |_|\\__\\___/|_| \\__, | |____/ |_____| |_____|<br>
|
|
|___/ <br>
|
|
</div>
|
|
<marquee behavior="scroll" direction="left" scrollamount="15">
|
|
Booting Digital Temple OS... Loading ancient scripts... Initiating chill_vibes.sh...
|
|
</marquee>
|
|
<marquee behavior="scroll" direction="right" scrollamount="10">
|
|
Welcome to the land of momo, coffee, and pure HTML bliss...
|
|
</marquee>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|