html
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" >
<!--
Below link will shiw the icons.
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
-->
<!--
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/js/all.min.js"></script>
-->
</head>
<body>
<p>I don't know why the fa icons are not showing below the line. <br /> The code are copied from a working file in w3cschool website tutorial.</p>
<p>
<b>NOW SOLVED - see <a href="https://www.sololearn.com/Discuss/2373646/?ref=app">solution</a></b>
</p>
<hr />
<i class="fa fa-car" > </i>
<i class="fa fa-car" style="font-size:48px;"></i>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
body {
}
p{
font-size: 20px;
color: green;
font-weight: bolder;
text-align: center ;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run