-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
285a6ee
commit 666aa11
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
--- | ||
title: Trying out this cool thing | ||
--- | ||
|
||
```html | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Animated ASCII Text</title> | ||
<style> | ||
body { | ||
background-color: #000; | ||
color: #0f0; | ||
font-family: monospace; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
} | ||
.ascii-art { | ||
white-space: pre; | ||
text-align: center; | ||
animation: color-change 5s infinite; | ||
} | ||
@keyframes color-change { | ||
0% { | ||
color: #0f0; | ||
} | ||
25% { | ||
color: #f00; | ||
} | ||
50% { | ||
color: #00f; | ||
} | ||
75% { | ||
color: #ff0; | ||
} | ||
100% { | ||
color: #0f0; | ||
} | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="ascii-art"> | ||
<pre> | ||
|
||
_____ ______ ___ ___ ___ ___ _________ ________ ________ ___ _____ ______ | ||
|\ _ \ _ \|\ \|\ \|\ \|\ \|\___ ___\\ __ \|\ ____\|\ \|\ _ \ _ \ | ||
\ \ \\\__\ \ \ \ \\\ \ \ \\\ \|___ \ \_\ \ \|\ \ \ \___|\ \ \ \ \\\__\ \ \ | ||
\ \ \\|__| \ \ \ \\\ \ \ __ \ \ \ \ \ \ __ \ \_____ \ \ \ \ \\|__| \ \ | ||
\ \ \ \ \ \ \ \\\ \ \ \ \ \ \ \ \ \ \ \ \ \|____|\ \ \ \ \ \ \ \ \ | ||
\ \__\ \ \__\ \_______\ \__\ \__\ \ \__\ \ \__\ \__\____\_\ \ \__\ \__\ \ \__\ | ||
\|__| \|__|\|_______|\|__|\|__| \|__| \|__|\|__|\_________\|__|\|__| \|__| | ||
\|_________| | ||
</pre> | ||
</div> | ||
</body> | ||
|
||
</html> | ||
``` |