-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (41 loc) · 1.66 KB
/
index.html
File metadata and controls
51 lines (41 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Promo Chat</title>
<link rel="shortcut icon" href="data:image/x-icon;" type="image/x-icon">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-6">
<div id="chatroom" class="rounded">
<h1>CHAT-ROOM</h1>
<form action="#" id="comment-form">
<div class="form-group">
<label for="your-message">Your comment</label>
<textarea type="text" name="content" id="your-message" class="form-control" placeholder="Here is my message.."></textarea>
</div>
<div class="form-group">
<label for="your-name">From</label>
<input type="text" name="content" id="your-name" class="form-control" placeholder="Bob">
</div>
<input type="submit" value="Send" class="btn btn-primary" id="submit">
</form>
<div id="messages">
<ul class="list-unstyled" id="list">
</ul>
<button class="btn btn-danger" id="refresh">Refresh Chat</button>
</div>
</div>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>