forked from NachiketGadekar1/browserllama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
59 lines (59 loc) · 1.57 KB
/
main.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script type="module" src="main.js" defer></script>
<link rel="stylesheet" href="styles.css">
</head>
<style>
.summarise_btn{
padding-top: 20px;
padding-bottom: 20px;
}
.button-logo {
width: 20px;
height: 20px;
margin-right: 8px;
}
#summarise{
display: flex;
align-items: center;
justify-content: center;
width: 110px;
height: 40px;
border: solid;
border-color: white;
}
#chat_button {
display: flex;
align-items: center;
justify-content: center;
width: 110px;
height: 40px;
border: solid;
border-color: white;
}
</style>
<body>
<div class="container">
<img src="./assets/Llama-PNG-Photo-2251227700.png" alt="Llama" width="40%" height="0%">
<h1 class="text">browserllama</h1>
<div class="summarise_btn">
<button id="summarise">
<img src="./assets/summarylogo.png" alt="Logo" class="button-logo">
Summarise webpage
</button>
</div>
<button id="chat_button" >
<img src="./assets/speech-bubble_12534135.png" alt="Logo" class="button-logo">
Chat with AI
</button>
</div>
<div id="status-popup" class="status-popup hidden">
<p id="status-message"></p>
</div>
</body>
</html>