Skip to content

Commit 73b6f25

Browse files
authored
Create index.html
Create separate basic HTML file (index.html) with linked external style and script files (style.css and script.js) for the animation example
1 parent 9fed4d7 commit 73b6f25

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

index.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="stylesheet" href="style.css">
8+
<title>CSS Animation Example</title>
9+
</head>
10+
11+
<body>
12+
13+
<div class="anim-one" id="animTextOne">
14+
CSS Animation for Each Single Letter Inside HTML div ID Element Text One
15+
</div>
16+
17+
<div class="anim-two" id="animTextTwo">
18+
CSS Animation for Each Single Letter Inside HTML div ID Element Text Two
19+
</div>
20+
21+
<div class="anim-three" id="animTextThree">
22+
CSS Animation for Each Single Letter Inside HTML div ID Element Text Three
23+
</div>
24+
25+
<script src="script.js"></script>
26+
27+
</body>
28+
</html>

0 commit comments

Comments
 (0)