오봉이와 함께하는 개발 블로그
외부 CSS 파일 HTML에 적용 본문
728x90
FrontEnd_day2 정리 (2021.12.03 금요일)
CSS 파일로 HTML 문서 외부에 정의
- CSS 파일 인코딩 UTF-8
- CSS 파일 생성
- HTML : <link...>
<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="stylesheet" href="external.css">
</head>
728x90
Comments