-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathanimation.html
More file actions
18 lines (18 loc) · 632 Bytes
/
animation.html
File metadata and controls
18 lines (18 loc) · 632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="animation.css">
<title>Animations and Keyframes in css</title>
</head>
<body>
<h1>Animations in CSS</h1>
<h3>Full documentation <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/animation">here</a> or video <a href="https://youtu.be/jiK6Mf-ILSg">here</a></h3>
<div class="container">
<div class="box">
<!--Probably noting here-->
</div>
</div>
</body>
</html>