-
Notifications
You must be signed in to change notification settings - Fork 0
/
wave.html
34 lines (29 loc) · 849 Bytes
/
wave.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
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wave animation</title>
<link rel="icon" href="favicon.ico"/>
<link rel="shortcut icon" href="favicon.ico"/>
<link rel="stylesheet" href="src/static/css/default.css">
<link rel="stylesheet" href="src/static/css/wave.css">
</head>
<body>
<div class="navBar">
<div class="icon"><a href="/HUI">HUI</a></div>
<div class="cursor" color="#D475E5"></div>
</div>
<section>
<div class="wave">
<span></span>
<span></span>
<span></span>
</div>
<div class="content">
<h2>Wave animation</h2>
</div>
</section>
</body>
<script src="src/static/js/cursor.js"></script>
</html>