forked from vedantyadu/wavejs-updated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (22 loc) · 916 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<title>wavejs demo</title>
<head>
<link href="./style.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/7e09a91182.js" crossorigin="anonymous"></script>
<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<svg class="wave" id="wave" viewbox="0 0 100 100">
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FA8BFF"/>
<stop offset="100%" stop-color="#2BFF88"/>
</linearGradient>
<path id="path" fill="url(#gradient)"></path>
</svg>
<a href="https://github.com/vedantyadu"><i class="fa-brands fa-github"></i></a>
<script src="index.js" type="module"></script>
</body>
</html>