how to add icon in css

Solutions on MaxInterview for how to add icon in css by the best coders in the world

showing results for - "how to add icon in css"
David
01 Sep 2017
1<!DOCTYPE html>
2<html>
3
4<head>
5    <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
6</head>
7
8<body>
9
10    <i class="fas fa-cloud"></i>
11    <i class="fas fa-heart"></i>
12    <i class="fas fa-car"></i>
13    <i class="fas fa-file"></i>
14    <i class="fas fa-bars"></i>
15
16</body>
17
18</html>