-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.86 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">
<title>Slack Overflow</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="stylesheet" href="landscape-breakpoint.css" type="text/css" />
<link rel="stylesheet" href="hd-mobile.css" type="text/css" />
<link rel="stylesheet" href="desktop-breakpoint.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body data-color="background-purple">
<main data-layout="mainFrame">
<div data-layout="clear-overflow">
<form id="chatInput">
<section data-color="background-grey" data-layout="header">
<label for="usrName" value="name" data-logo=""></label>
<input type="text" id="usrName" placeholder="Your Name here ... "/>
</section>
<section>
<label for="msgId">Message ID:</label>
<input id="msgId"/>
</section>
<section data-layout="footer" data-color="background-grey">
<label for="msgBody" value="message body"></label>
<input id="msgBody" data-msgBody=""/>
</section>
<button id="refresh" data-color="background-transparent">
<img src="reload8.svg" alt="" data-layout="fill">
</button>
<button id="post" data-color="background-transparent lightgrey">Send</button>
<button id="change" data-color="background-transparent lightgrey">Edit</button>
<button id="delete" data-color="background-transparent lightgrey">Delete</button>
</form>
<div data-layout="whiteBoard" data-color="background-white">
<section class="msgBoard" data-layout="msgBoard" data-color="background-white"></section>
</div>
</div>
</main>
<script src="main.js"></script>
</body>