batb / index.html
SarowarSaurav's picture
Create index.html
f0ffbd8 verified
raw
history blame
1.06 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BATB Acronym Finder</title>
<link rel="stylesheet" href="styles.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div class="chat">
<div class="chat-title">
<h2>Kelly Chen</h2>
<figure class="avatar">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/764024/profile/profile-512.jpg" alt="Avatar">
</figure>
</div>
<div class="messages">
<div class="messages-content"></div>
</div>
<div class="action-box">
<textarea class="action-box-input" type="text" placeholder="Type message..."></textarea>
<button class="action-box-submit" type="submit" onclick="insertMessage()">
<i class="fa fa-paper-plane"></i>
</button>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>