简体   繁体   中英

Font awesome 0x0

Included the script

<script
  src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
  integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
  crossorigin="anonymous"
  ></script>

And in the code

   <span class="fas fa-chevron-down" style="float:right;"></span>

But I cant able to access font awesome icon . Its shows 0x0 )X)

Any help appreciated.

将此添加到头部:

<link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.7/css/all.css">

You can use this CDN, and paste this link tag in between your head tags.

 <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet"/> <i class="fas fa-chevron-down"></i>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM