-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
62 lines (62 loc) · 1.77 KB
/
index.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
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chat AI - Your Helping Buddy</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<div class="logo">ChatAI</div>
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<nav class="navbar">
<ul>
<li>
<a
target="_blank"
href="https://beta.openai.com/playground/p/default-openai-api?model=text-davinci-003"
>API</a
>
<img class="codeImg" src="./assets/api.png" />
</li>
<li>
<a
target="_blank"
href="https://github.com/piyush-agrawal6/ChatAI-Bot"
>Code
</a>
<img class="codeImg" src="./assets/github.png" />
</li>
<li>
<a
target="_blank"
href="https://drive.google.com/file/d/1gFYaxu-xdJ3QfySJtPubrL-_D0zQtN6-/view?usp=share_link"
>About Me</a
><img class="codeImg" src="./assets/about.png" />
</li>
</ul>
</nav>
</header>
<div id="app">
<div id="chat_container"></div>
<form>
<textarea
name="prompt"
cols="1"
rows="1"
placeholder="Ask me anything"
></textarea>
<button type="submit">
<img class="sendImg" src="./assets/send.png" alt="sendIcon" />
</button>
</form>
</div>
<script type="module" src="./script.js"></script>
</body>
</html>