html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- Created by Pawan Kumar -->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<a href="https://www.sololearn.com/">
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player src="https://assets1.lottiefiles.com/packages/lf20_pl9pcp2o.json" background="transparent" speed="1" style="width: 300px; height: 300px;"
loop autoplay class="make">
</lottie-player>
</a>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Created by Pawan Kumar */
body
{
width: 100vw;
height: 100vh;
display: grid;
place-content:center;
background: #8E2DE2; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #4A00E0, #8E2DE2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
Enter to Rename, Shift+Enter to Preview
js
js
1
//
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run