-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmb.html
More file actions
31 lines (29 loc) · 1.06 KB
/
Copy pathsmb.html
File metadata and controls
31 lines (29 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>smb</title>
<link rel="stylesheet" href="smb.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
</head>
<body>
<div class="middle">
<div class="sm-container">
<i class="show-btn fas fa-user"></i>
<div class="sm-menu">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
<a href="#"><i class="fab fa-whatsapp"></i></a>
</div>
</div>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(".show-btn").click(function(){
$(".sm-menu").fadeToggle("fast");
});
</script>
</body>
</html>