-
Notifications
You must be signed in to change notification settings - Fork 400
/
mysocial.html
41 lines (39 loc) · 1.14 KB
/
mysocial.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
<!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>My Social</title>
<script src="https://kit.fontawesome.com/a31bdd6d95.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="look.css">
</head>
<body>
<div id="social">
<ul>
<li>
<a href="" target="_blank">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
</li>
<li>
<a
href="" target="_blank">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="" target="_blank" >
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="" target="_blank" >
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>