본문 바로가기

Eclipse

[Eclipse] HTML5 포맷 Templates에 추가

반응형

이클립스에서 아래 메뉴 선택

"Window - Preferences"

"Web - JSP Files - Editor - Templates"

아래 코드 추가

<%@ page language="java" contentType="text/html; charset=${encoding}" pageEncoding="${encoding}"%>
<!DOCTYPE html>
<html lang="ko-KR">
	<head>
		<meta charset="${encoding}">
		<meta name="viewport" content="width=device-width,initail-scale=1.0"/>
		<title>타이틀${cursor}</title>
	</head>
	<body>
		<header>
		</header>
		<section>
			<article>
			</article>
		</section>
		<footer>
		</footer>
	</body>
</html>

 

반응형

'Eclipse' 카테고리의 다른 글

[Eclipse] 이클립스 코드 자동정렬 단축키  (0) 2024.12.23
[Eclipse] 폰트(Font) 변경  (0) 2024.12.22
[Eclipse] 폰트 색상 변경  (0) 2024.12.22