-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (28 loc) · 979 Bytes
/
index.html
File metadata and controls
33 lines (28 loc) · 979 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<title>The French Chatbot</title>
</head>
<body>
<h1>The French Bot</h1>
<main>
<section class="chat" id="chat"></section>
<div class="input-wrapper" id="input-wrapper">
<form id="name-form">
<input id="name-input" type="text" placeholder="Type your message..." />
<button class="send-btn" type="submit">
Send
</button>
</form>
<div id="button-container" style="display: none;"></div>
</div>
</main>
<script src="./script.js"></script>
</body>
</html>