Skip to content

Commit

Permalink
Add FL page
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJoeFin committed Jan 4, 2024
1 parent 61441f9 commit c40c881
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions desantis.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>nope!</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
@keyframes marquee {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}

h1 {
animation: marquee 5s linear infinite;
}
</style>
</head>
<body>
<h1>No DeSantis for me!</h1>
</body>
</html>

0 comments on commit c40c881

Please sign in to comment.