본문 바로가기
반응형
Front-End/HTML

[HTML] error: get http://127.0.0.1:5500/favicon.ico 404 (not found)

by brightGarden02 2023. 2. 2.

error: get http://127.0.0.1:5500/favicon.ico 404 (not found)

 

 

 

해결방법:

html head 안에 아래줄 추가

<link rel="short icon" href="#">

 

 

 

전체 html

<!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>Document</title>
    <link rel="short icon" href="#">
</head>
<body>
    <script type="text/javascript" src="../js/command-pattern.js"></script>
</body>
</html>

'Front-End > HTML' 카테고리의 다른 글

html(thymeleaf) 이미지 2개를 나란히 배치  (0) 2023.01.10

댓글


반응형
반응형