채팅소스#3 - /src/index.html
컨텐츠 정보
- 6,076 조회
본문
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/index.css">
<title>chat-app</title>
</head>
<body>
<div class="app__wrap">
<div id="info" class="app__info"></div>
<div id="chatWindow" class="app__window"></div>
<div class="app__input__wrap">
<input id="chatInput" type="text" class="app__input"
autofocus placeholder="대화를 입력하세요.">
<button id="chatMessageSendBtn" class="app__button">전송</button>
</div>
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="/js/index.js"></script>
</body>
</html>
관련자료
댓글 0개
등록된 댓글이 없습니다.