-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.21 KB
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<!--
프로그램언어공부하면 아래3가지 반드시 알고 있어야 합니다.
- 주석처리 방법 (공통)
- 디버그 방법(자바스크립트 부터~스프링까지)
- CRUD 방법(스프링+오라클DB)
-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--
메타태그: 사진기 사진의 정보를 표시하는데서 부터 출발
메타태그는 컨텐츠 내용은 아니고, 정보의 정보입니다.
-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 뷰포트는 반응형(Mobile,Tablet,PC) 홈페이지에서 필수 항목임. -->
<title>브라우저제목으로 표시</title>
<!-- jQuery코어 임포트import 가져오기 -->
<script src="/home/js/jquery-3.6.0.js"></script>
</head>
<body>
<!-- jQuery 기본구조 만들고, home페이지로 이동시키기 -->
<script>
$(document).ready(function(){
//루트홈페이지로 접근할때 replace함수로 홈페이지로 이동처리.
location.replace('/home/index.html');
});
</script>
</body>
</html>