-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
30 lines (30 loc) · 922 Bytes
/
home.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OptoGPT Home</title>
<link rel="stylesheet" href="home.css">
</head>
<body>
<a class="about" href="about.html">About Us</a>
<div class="sidebar">
<button id="new-chat">+ New Chat</button>
<ul id = "chats">
</ul>
</div>
<div class="main-content">
<header>
<img src="Michigan-Wolverines-Logo.png" alt="U-M Logo">
<h1 id="title">OptoGPT</h1>
</header>
<div class="chat-container"></div>
<div class="chat-input">
<img src="Michigan-Wolverines-Logo.png" alt="UM Logo">
<input type="text" placeholder="Ask OptoGPT!">
<button class="send-button">➤</button>
</div>
</div>
</body>
<script src="home.js"></script>
</html>