-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (35 loc) · 1.12 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
<!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">
<link rel="stylesheet" href="style.css">
<title>Unexpected Chat</title>
</head>
<body>
<div class="title">
<h1>The Unexpected Chat</h1>
</div>
<section class="chat-body">
<div class="welcome-message">
<div class="sender">
<img class="person-a" src="./images/personA.png" alt="Chatbuddy">
<p class="sender-name">Your friendly Chatbuddy</p>
</div>
<div class="welcome-text">Hello, how nice to have a chat! Let me surprise you<span class="smiley"> 😊</span></div>
</div>
</section>
<div id="spinner-back"></div>
<div id="spinner-front">
<img src="./images/spinner.gif" /><br>
</div>
<section class="footer">
<div class="message-input">
<input type="text" name="message" id="external-input">
<button class="send-btn"><img src="./images/send.png" alt="Send button"></button>
</div>
</section>
<script src="./main.js" type="module"></script>
</body>
</html>