mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-04-20 14:16:49 +00:00
24 lines
404 B
HTML
24 lines
404 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
body {
|
|
background-color: white;
|
|
color: black;
|
|
animation: change-background-color 3s infinite alternate;
|
|
}
|
|
|
|
@keyframes change-background-color {
|
|
to {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Animated body element</h1>
|
|
</body>
|
|
</html>
|