-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInterviewStart.html
More file actions
39 lines (36 loc) · 1.31 KB
/
InterviewStart.html
File metadata and controls
39 lines (36 loc) · 1.31 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
32
33
34
35
36
37
38
39
<!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/InterviewStart.css">
</head>
<body>
<div id='desc-contents'>
<div>질문이 랜덤 선택되어 테스트를 시행합니다. 다양한 질문에 답변해보세요</div>
<div>답변 후 녹화본을 확인해 보며 답변 내용을 체크해보세요</div>
<div>그럼 지금부터 AI 모의 면접을 시작합니다</div>
</div>
<div id='last-info'>
<div id='info1' class='info-style'>
<div class='sub-ment'>준비시간</div>
<div class='time-box'>
<div>
<span class='time-amount'>30</span>sec
</div>
</div>
</div>
<div id='info2' class='info-style'>
<div class='sub-ment'>답변시간</div>
<div class='time-box'>
<div>
<span class='time-amount'>90</span>sec
</div>
</div>
</div>
</div>
<button id='start-btn' onclick="location.href='./ActualInterview.html'">START</button>
</body>
</html>