-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicon_test.html
30 lines (28 loc) · 982 Bytes
/
icon_test.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
<!--
**Beginners project** Day-1
Inspired/Mocked from
How To Add Social Media Icons Without Images - Font Awesome icon css hover effect
link: https://www.youtube.com/watch?v=QaSLBMqPb2U&list=PL5e68lK9hEzePSLgrkx-PWMUjh64-BbIe
-->
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link href="css/test.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous">
</script>
</head>
<ul>
<li>
<a href="#">
<i class="fab fa-facebook-f icon"></i> </a>
</li>
<li>
<a href="#"><i class="fab fa-twitter icon"></i></a>
</li>
<li>
<a href="#"><i class="fab fa-linkedin-in icon"></i></a></li>
<li>
<a href="#"><i class="fab fa-google-plus-g icon"></i></a></li>
</ul>
</html>