-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathtransition.html
More file actions
19 lines (18 loc) · 617 Bytes
/
transition.html
File metadata and controls
19 lines (18 loc) · 617 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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="transition.css">
<title>Css Transitions</title>
</head>
<body>
<h1>Css Transition</h1>
<h3>Refer doc <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/transition">here</a> and Entire video <a href="https://youtu.be/k4Dr0PJKidI">here</a></h3>
<div class="container">
<div id="box">
<!--Noting actually goes here-->
</div>
</div>
</body>
</html>