-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (32 loc) · 1.09 KB
/
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
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="app.css">
<link rel="stylesheet" href="css/all.css">
<title>Send Animation</title>
</head>
<body>
<div class="container">
<p><strong>SEND ANIMATION</strong> </p>
<div id="send" class="send">
<p id="message" class=" ">SEND</p>
<div id="character1" class="human-wrapper">
<div class="head"></div>
<div class="body"></div>
<div id="hand1" class="hand"></div>
<div id="package1" class="package"></div>
</div>
<div id="character2" class="human-wrapper">
<div class="head"></div>
<div class="body"></div>
<div id="hand2" class="hand"></div>
<div id="package2" class="package"></div>
</div>
</div>
<p>NARUDESIGNS <i class="fa fa-heart"></i> 2020</p>
</div>
<script src="app.js"></script>
</body>
</html>