26 lines
593 B
HTML
26 lines
593 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en" >
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Rotating Text</title>
|
||
|
<link rel="stylesheet" href="./style.css">
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<!-- partial:index.partial.html -->
|
||
|
<div class="rotating-text">
|
||
|
<p>CSS Animation is</p>
|
||
|
<p>
|
||
|
<span class="word alizarin">awesome.</span>
|
||
|
<span class="word wisteria">beautiful.</span>
|
||
|
<span class="word peter-river">creative.</span>
|
||
|
<span class="word emerald">fabulous.</span>
|
||
|
<span class="word sun-flower">interesting.</span>
|
||
|
</p>
|
||
|
</div>
|
||
|
<!-- partial -->
|
||
|
<script src="./script.js"></script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|