-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterviewPage.html
More file actions
25 lines (22 loc) · 971 Bytes
/
InterviewPage.html
File metadata and controls
25 lines (22 loc) · 971 Bytes
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
<!DOCTYPE html>
<html lang="en">
<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>AI MOCK INTERVIEW SYSTEM</title>
<link rel="stylesheet" href="./assets/css/InterviewPage.css">
<script src="./assets/js/InterviewPage.js" type="module"></script>
<script src="./assets/js/jquery-3.6.0.min.js"></script>
</head>
<body>
<div id='main-contents'>
<div id='main-title'>AI 모의 면접 시작하기</div>
<div id='sub-desc'>본 면접은 사이트에서 준비한 질문 리스트 중 랜덤 선택되어 진행됩니다</div>
<div id='question-contents'>
<div id='question-contents-title'>면접 질문 리스트 확인하기</div>
</div>
<button id='start-button' onclick="location.href='./InterviewTutorial.html'">모의 면접 시작하기</button>
</div>
</body>
</html>