Why doesn't my icon show up in the HTML but instead shows a bordered square?
P粉842215006
P粉842215006 2023-07-28 00:13:10
0
1
589
<p>As the title states, I used the FontAwesome website to get an icon and then tried to display it using the following code: </p> <p><br /></p> <pre class="snippet-code-html lang-html prettyprint-override"><code><!DOCTYPE html> <html> <head> <title>Loading....</title> <link rel="stylesheet" href="./starting.css"></link> </head> <script src="https://kit.fontawesome.com/1f2023aaf1.js" crossorigin="anonymous"></script> <body> <i id="fa" class="fa fa-regular fa-spinner fa-xl"></i>"></i> </body> </html></code></pre> <p><br /></p> <p>I tried using fa-xl class to make it bigger and just add fa class. But this didn't work either. </p>
P粉842215006
P粉842215006

reply all(1)
P粉567112391

I've fixed your HTML and removed the fa-regular class.


<!DOCTYPE html>
<html>

<head>
  <title>Loading....</title>
  <link rel="stylesheet" href="./starting.css">
  <script src="https://kit.fontawesome.com/1f2023aaf1.js" crossorigin="anonymous"></script>
</head>
<body>
  <i id="fa" class="fa fa-spinner fa-xl"></i>
</body>
</html>


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!