forked from woutervdijke/CatGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (63 loc) · 3.04 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
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="preconnect" href="cdnjs.cloudflare.com" />
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link href="style.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet" />
<title>DogGPT</title>
<meta name="description" content="ChatGPT's The Doggy-Verse">
<!-- Start SEO Tag -->
<meta property="og:title" content="DogGPT">
<meta property="og:locale" content="en_US">
<meta name="description" content="ChatGPT's The Doggy-Verse">
<meta property="og:description" content="ChatGPT's The Doggy-Verse">
<link rel="canonical" href="https://thedoggybrad.github.io/dogpt/">
<meta property="og:url" content="https://thedoggybrad.github.io/dogpt/">
<meta property="og:site_name" content="DogGPT">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<meta property="twitter:title" content="DogGPT">
<meta name="keywords" content="chatgpt, dogpt">
<meta name="author" content="TheDoggyBrad Software Lab">
<meta property="og:image" content=screenshot.png>
<!-- End SEO tag -->
</head>
<body>
<div id="container">
<div class="header">
<h1>DogGPT</h1><br>
<p>ChatGPT's The Doggy-Verse</p>
</div>
<div id="chatcontainer">
<div id="chat">
<div class="chat-bubble-container chat-gpt-bubble-container">
<div class="profile-picture"><img src="images/avatar.png" height="100%" /></div>
<div class="chat-bubble chat-gpt-bubble">
Aw, aw aw aw, aw aw?
</div>
</div>
</div>
<div id="input-area">
<div id="input-container">
<form id="form">
<input type="text" placeholder="Type your message here" id="user-input" autocomplete="off" />
</form>
<a><i class="fas fa-paper-plane"></i></a>
</div>
<p class="disclaimer">This site was created by <a href="https://github.com/thedoggybrad"
target="_blank">TheDoggyBrad Software Lab</a> (with some help from ChatGPT and <a href="https://catgpt.wvd.io/">CatGPT</a>) | <a href="#"
onclick="handleInfoClick" id="infoBtn">Click here to know about us!</a></p><br>
<p class="footer">Free and Open-Source Software. DogGPT may produce unexpected or irritating results. DogGPT July 7, 2024 Version</p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>