how to make a yourbue icon in html

Solutions on MaxInterview for how to make a yourbue icon in html by the best coders in the world

showing results for - "how to make a yourbue icon in html"
Frieda
09 Jun 2017
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<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
7</head>
8<body>
9
10<h1>fa fa-youtube-play</h1>
11
12<i class="fa fa-youtube-play"></i>
13<i class="fa fa-youtube-play" style="font-size:24px"></i>
14<i class="fa fa-youtube-play" style="font-size:36px"></i>
15<i class="fa fa-youtube-play" style="font-size:48px;color:red"></i>
16<br>
17
18<p>Used on a button:</p>
19<button style="font-size:24px">Button <i class="fa fa-youtube-play"></i></button>
20
21<p>Unicode:</p>
22<i style="font-size:24px" class="fa">&#xf16a;</i>
23
24</body>
25</html> 
26