Front End

favicon 변환 페이지

DevHam94 2024. 12. 26. 15:48

웹 페이지는 상단에 favicon 모양이 있다. 

확장자는 .ico인데

png 확장자를 ico로 변환해주는 사이트가 있다. 

 

https://convertico.com/

 

변환후 파일이름을 favicon.ico로 해준뒤 index.html과 같은경로에 위치시켜주면 된다. 

 

보통 아래의 코드를 html에 넣어줘야하는데 요즘에는 브라우저에서 루트에 위치한 파비콘을 가져가다 쓴다. 

<head>
	<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
    <link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>

'Front End' 카테고리의 다른 글

typescript 인터페이스  (0) 2023.08.02
typescript 제네릭 (Generic)  (0) 2023.08.01
TypeScript 환경설정  (0) 2023.07.30
typescript VS code 추천 extension  (0) 2023.07.30
TypeScript 기본적인 문법들  (0) 2023.07.30