css image icon

Solutions on MaxInterview for css image icon by the best coders in the world

showing results for - "css image icon"
Jana
27 Sep 2020
1<!DOCTYPE html>
2<html>
3<head>
4<title>Font Awesome Icons</title>
5<meta name="viewport" content="width=device-width, initial-scale=1">
6<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
7<!--Get your own code at fontawesome.com-->
8</head>
9<body>
10
11<p>Some Font Awesome icons:</p>
12<i class="fas fa-cloud"></i>
13<i class="fas fa-heart"></i>
14<i class="fas fa-car"></i>
15<i class="fas fa-file"></i>
16<i class="fas fa-bars"></i>
17
18<p>Styled Font Awesome icons (size and color):</p>
19<i class="fas fa-cloud" style="font-size:24px;"></i>
20<i class="fas fa-cloud" style="font-size:36px;"></i>
21<i class="fas fa-cloud" style="font-size:48px;color:red;"></i>
22<i class="fas fa-cloud" style="font-size:60px;color:lightblue;"></i>
23
24</body>
25</html>
26