: favicon은 사이트 탭의 작은 아이콘이다.
적용을 시키려면 헤드 태그 사이의 제목 위에 link.favicon으로 링크 태그에 주소 입력
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<title>심리사이트</title>
<section id="qna">
<div class="status mx-auto mt-5">
<div class="statusBar">
</div>
</div>
<div class="qBox my-5 py-3 mx-auto">
</div>
<div class="answerBox">
</div>
//alert("hi");
const main = document.querySelector("#main");
const qna = document.querySelector("#qna");
function begin() {
main.style.display = "none";
qna.style.display = "block";
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeOut {
from { opacity: 1; }
to { opacity: 0; }
}
function begin() {
main.style.animation = "fadeOut 1s";
setTimeout(() => {
qna.style.animation = "fadeIn 1s";
}, 450);
setTimeout(() => {
main.style.display = "none";
qna.style.display = "block"
}, 900)
}