-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwebview.html
More file actions
42 lines (38 loc) · 1.12 KB
/
webview.html
File metadata and controls
42 lines (38 loc) · 1.12 KB
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
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 0;
display: flex;
}
.left-panel {
flex: 1;
background-color: #3498db; /* Adjust color as needed */
height: 100vh;
}
.right-panel {
flex: 4;
background-color: #2ecc71; /* Adjust color as needed */
height: 100vh;
}
</style>
<title>Split Screen</title>
</head>
<body>
<div class="left-panel">
<img src='https://pbs.twimg.com/media/GA6D0t9WAAAcWXL?format=png&name=small' alt='chatbot-img'
style='border-radius:100%; width: 30px; height: 30px;'>
</div>
<div class="right-panel">
<div class='typing-animation' id='typing-ani'>
<div class='typing-dot' style='--delay: 0.2s'></div>
<div class='typing-dot' style='--delay: 0.3s'></div>
<div class='typing-dot' style='--delay: 0.4s'></div>
</div>
</div>
</body>
</html>