본문 바로가기
www/HTML tip

favicon

by 랭님 2015. 1. 5.

개요

favicon은 브라우저 상단에 표시되는 웹 페이지의 아이콘이다.

파일 포멧으로는 주로 ico 를 사용하며 기본 크기는 16x16 이다

사용법

<link rel="shortcut icon" href="파일이름.ico">

예제

<html>
<head>
	<link rel="shortcut icon" href="파일이름.ico">
</head>
<body>
</body>
</html>