-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 996 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Project Intel</title>
<!-- Styling References - Oscar Only! -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Raleway"
/>
<script
src="https://kit.fontawesome.com/6b5c9eea72.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="sidebar">
<h1>Project Intel</h1>
<ul class="chat-func">
<li id="clear" onclick="clearRequest()">Clear</li>
</ul>
</div>
<div class="chat-window">
<div class="chat-area" id="chat"></div>
<div class="input-area">
<input type="text" placeholder="Type your message" id="input" />
<button type="submit" id="submit" onclick="sendRequest()">
Send </i>
</button>
<script src="script.js"></script>
</div>
</div>
</div>
</body>
</html>