-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.44 KB
/
index.html
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
<!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>Scaledrone Chat App</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="https://www.scaledrone.com/assets/favicon.png" />
<script
type="text/javascript"
src="https://cdn.scaledrone.com/scaledrone.min.js"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Rubik:300,400,500,700"
/>
</head>
<body class="light-mode">
<div>
<h1 class="header">Welcome to JS ScaleDrone Chat App!</h1>
</div>
<div>
<label class="toggle-switch" type="checkbox">
<input type="checkbox" id="toggle" />
<span class="slider"></span>
</label>
</div>
<div class="messages"></div>
<form class="message-form" onsubmit="return false;">
<input
class="message-form__input"
placeholder="Type a message..."
type="text"
/>
<input class="message-form__button" value="Send" type="submit" />
</form>
<hr />
<div class="members-count">-</div>
<div class="members-list">-</div>
<script src="./script.js"></script>
</body>
</html>