-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (54 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<!-- <meta http-equiv="refresh" content="3"> -->
<title>Gemini Clone</title>
<!-- Linking Google Fonts for Icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<!-- Header Greetings -->
<h2 class="title">Hello, there</h2>
<h4 class="subtitle">How can I help you today?</h4>
<!-- Suggestion List -->
<ul class="suggestion-list">
<li class="suggestion">
<h4 class="text">Help me plan a game night with my 5 best friends for under $100.</h4>
<span class="icon material-symbols-outlined">draw</span>
</li>
<li class="suggestion">
<h4 class="text">What are the best tips to improve my public speaking skills?</h4>
<span class="icon material-symbols-outlined">lightbulb</span>
</li>
<li class="suggestion">
<h4 class="text">Can you help me find the lastest news on web development?</h4>
<span class="icon material-symbols-outlined">explore</span>
</li>
<li class="suggestion">
<h4 class="text">Write javascript code to sum all element in an arrey.</h4>
<span class="icon material-symbols-outlined">code</span>
</li>
</ul>
</header>
<!-- Chat List / Container -->
<div class="chat-list"></div>
<!-- Typing Area -->
<div class="typing-area">
<form action="#" class="typing-form">
<div class="input-wrapper">
<input type="text" placeholder="Enter a promet here" class="typing-input" required>
<button class="icon material-symbols-outlined">send</button>
</div>
<div class="action-buttons">
<span id="toggle-theme-button" class="icon material-symbols-outlined">light_mode</span>
<span id="delete-chat-button" class="icon material-symbols-outlined">delete</span>
</div>
</form>
<p class="disclaimer-text">Gemini may display inaccurate info, including about people, so double-check its responses.</p>
</div>
<script src="script.js"></script>
</body>
</html>