-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchat.html
More file actions
82 lines (76 loc) · 2.41 KB
/
chat.html
File metadata and controls
82 lines (76 loc) · 2.41 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="kr">
<head>
<link rel="stylesheet" href="./css/chat.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Permissions-Policy" content="interest-cohort=()" />
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<title>호잠</title>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap"
rel="stylesheet"
/>
<script
src="https://code.jquery.com/jquery-3.6.4.js"
integrity="sha256-a9jBBRygX1Bh5lt8GZjXDzyOB+bWve9EiO7tROUtj/E="
crossorigin="anonymous"
></script>
</head>
<body>
<nav>
<div class="container">
<a class="hocamBtn"
><img src="./images/mainlogo_lil.png" alt="MainLogo" id="mainlogo"
/></a>
</div>
</nav>
<div class="chatbox-container">
<div class="left-column">
<div id="chatbox" class="chatbox">
<!-- 채팅이 여기에 붙어요 -->
</div>
<div class="send-area">
<input
id="transcript"
class="message-box"
type="text"
placeholder="메세지를 입력해 주세요"
/>
<button id="send-content">보내기</button>
</div>
</div>
<div class="controls">
<img
src="images/start-recording.png"
id="recording-btn"
alt="recoring-btn"
/>
<div class="buttons">
<button onclick="changeImgStart()" id="start-recording">
녹음 시작
</button>
<button onclick="changeImgStop()" id="stop-recording" disabled>
녹음 종료
</button>
</div>
<div class="finish" id="finish-studying">
<a class="finish-btn">학습 종료하기</a>
</div>
</div>
</div>
<script src="./script/app2.js"></script>
</body>
</html>