gwooden_코린이

CSS 파비콘 적용해보기 본문

프론트엔드/html

CSS 파비콘 적용해보기

gwooden22 2022. 12. 15. 14:12
728x90

1. 파비콘


<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>Document</title>
  <link rel="icon" href="image/pepe.jpg"> <!--파비콘 넣기-->
  <link rel="stylesheet" href="css/style2.css">
</head>
<link rel="icon" href="image/pepe.jpg">


  <script src="https://kit.fontawesome.com/20283a0d49.js" crossorigin="anonymous"></script>
</head>
<body>
  <i class="fa-sharp fa-solid fa-camera-retro"></i>

 

 

i{
  font-size:  40px;
}

728x90
Comments