-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 815 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
30
31
32
<!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>Animated Share Button</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
</head>
<body>
<div class="share">
<span>Share</span>
<nav>
<a href="">
<i class="fa fa-facebook"></i>
</a>
<a href="">
<i class="fa fa-twitter"></i>
</a>
<a href="">
<i class="fa fa-instagram"></i>
</a>
<a href="">
<i class="fa fa-google"></i>
</a>
</nav>
</div>
</body>
</html>