Spaces:
Sleeping
Sleeping
Create index.html
Browse files- index.html +30 -0
index.html
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>BATB Acronym Finder</title>
|
7 |
+
<link rel="stylesheet" href="styles.css">
|
8 |
+
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
9 |
+
</head>
|
10 |
+
<body>
|
11 |
+
<div class="chat">
|
12 |
+
<div class="chat-title">
|
13 |
+
<h2>Kelly Chen</h2>
|
14 |
+
<figure class="avatar">
|
15 |
+
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/764024/profile/profile-512.jpg" alt="Avatar">
|
16 |
+
</figure>
|
17 |
+
</div>
|
18 |
+
<div class="messages">
|
19 |
+
<div class="messages-content"></div>
|
20 |
+
</div>
|
21 |
+
<div class="action-box">
|
22 |
+
<textarea class="action-box-input" type="text" placeholder="Type message..."></textarea>
|
23 |
+
<button class="action-box-submit" type="submit" onclick="insertMessage()">
|
24 |
+
<i class="fa fa-paper-plane"></i>
|
25 |
+
</button>
|
26 |
+
</div>
|
27 |
+
</div>
|
28 |
+
<script src="scripts.js"></script>
|
29 |
+
</body>
|
30 |
+
</html>
|