forked from ShauryaDamathia/Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHtml.html
More file actions
28 lines (28 loc) · 1.12 KB
/
Html.html
File metadata and controls
28 lines (28 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="Css.css">
</head>
<body>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<div class="container">
<div class="chat-container">
<div class="messages" id="messages">
<!-- Messages will be appended here -->
</div>
<input type="text" id="message-input" placeholder="Type your message...">
<button id="send-btn">Send</button>
</div>
<div class="video-container">
<video id="localVideo" autoplay muted></video>
<video id="remoteVideo" autoplay></video>
<button id="startCallBtn">Start Call</button>
<button id="endCallBtn">End Call</button>
</div>
<script src="Js.js"></script>
</body>
</html>