-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 1.21 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
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Friend Request</title>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div
class="main"
data-aos="fade-down"
data-aos-easing="linear"
data-aos-duration="1500"
>
<img
src="user.webp"
alt="user"
data-aos="flip-left"
data-aos-easing="ease-out-cubic"
data-aos-duration="2000"
/>
<h1 data-aos="zoom-in-up" data-aos-duration="2000">Harry</h1>
<h3 data-aos="zoom-out-down" data-aos-duration="2000">Stranger</h3>
<div class="btns">
<button id="remove" data-aos="flip-left" data-aos-duration="2000">
Remove
</button>
<button id="add" data-aos="flip-right" data-aos-duration="2000">
Add Friend
</button>
</div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="app.js"></script>
</body>
</html>