refactor: HTML 및 CSS 코드 수정
All checks were successful
코드 품질 검사 / 린트 검사 (push) Successful in 4m34s
Test Runner / test (push) Successful in 2m7s

- index.html에서 불필요한 h2 태그 제거
- SCSS 및 CSS 파일에서 box-sizing 및 transform 속성 정리
- 이미지 경로를 따옴표로 감싸기
- 주석 및 코드 정리
This commit is contained in:
2026-01-31 22:27:58 +09:00
parent fe3afbbc4f
commit 817f10c50c
12 changed files with 2199 additions and 108 deletions

12
.htmlhintrc Normal file
View File

@@ -0,0 +1,12 @@
{
"tagname-lowercase": true,
"attr-lowercase": true,
"attr-value-double-quotes": true,
"doctype-first": true,
"tag-pair": true,
"spec-char-escape": true,
"id-unique": true,
"src-not-empty": true,
"attr-no-duplication": true,
"title-require": true
}