无法使用 font-awesome 在 html 代码中加载主页图标

Unable to load home icon in html code using font-awesome

<!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="UTF-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>WEbsite</title>
    
        <link rel="stylesheet" href="css/style.css" />
        <link
          rel="stylesheet"
          href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css"
        />
      </head>
    
      <body>
        <header class="header">
          <nav class="nav-bar">
              <a href="#home"><i class="fa-regular fa-house"></i>  <span>home</span></a>
          </nav>
        </header>
      </body>
    </html>

无法使用 font-awesome 在 html 代码中加载主页图标。在主页图标的位置,浏览器显示十字图标。请告诉我代码有什么问题?

使用 fa-solid 而不是常规。

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>WEbsite</title>

  <link rel="stylesheet" href="css/style.css" />
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css" />
</head>

<body>
  <header class="header">
    <nav class="nav-bar">
      <a href="#home"><i class="fa-solid fa-house"></i>  <span>home</span></a>
    </nav>
  </header>
</body>

</html>

Fontawesome 图标加载正常,但您使用的是错误的 类。 代替 <i class="fa-regular fa-house"></i><i class="fa fa-house"></i>