-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.23 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.23 KB
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
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>3d Hover Button Effect</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<ul>
<div class="flex">
<li class="like">
<a href="#">
<i class="fa-solid fa-heart"></i>
<span>Like</span>
</a>
</li>
<li class="retweet">
<a href="#">
<i class="fa-solid fa-retweet"></i>
<span>Retweet</span>
</a>
</li>
</div>
<div class="flex">
<li class="share">
<a href="#">
<i class="fa-solid fa-share"></i>
<span>Share</span>
</a>
</li>
<li class="comments">
<a href="#">
<i class="fa-solid fa-comment"></i>
<span>Comments</span>
</a>
</li>
</div>
</ul>
</body>
</html>