Skip to content

Commit 8994b2e

Browse files
authored
Update index.html
1 parent 38561b1 commit 8994b2e

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

index.html

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
<!DOCTYPE html>
2-
<html lang="nl">
2+
<html lang="en">
33
<head>
4-
<meta charset="UTF-8">
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
56
<title>Indicatiehulp Webchat</title>
67
<style>
7-
#chat { height: 400px; overflow-y: scroll; border: 1px solid #ccc; padding: 10px; }
8-
.user, .agent { margin: 5px 0; }
9-
.user { font-weight: bold; }
8+
body { font-family: sans-serif; margin: 0; padding: 0; display: flex; flex-direction: column; height: 100vh; }
9+
#chat { flex: 1; overflow-y: auto; padding: 1em; background: #f4f4f4; }
10+
#input-form { display: flex; padding: 1em; background: #fff; }
11+
input { flex: 1; padding: 0.5em; font-size: 1em; }
12+
button { padding: 0.5em 1em; }
13+
.user { font-weight: bold; margin-top: 1em; }
14+
.agent { margin-left: 1em; color: #333; }
1015
</style>
1116
</head>
1217
<body>
13-
<h2>Webchat Indicatiehulp</h2>
1418
<div id="chat"></div>
1519
<form id="input-form">
16-
<input id="user-input" type="text" placeholder="Typ hier..." />
20+
<input type="text" id="user-input" placeholder="Typ hier je vraag..." autocomplete="off" />
1721
<button type="submit">Verzend</button>
1822
</form>
1923
<script src="script.js"></script>

0 commit comments

Comments
 (0)