forked from Yarob50/ChatGPT-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (32 loc) · 1.23 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
<!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>
<!-- STYLES -->
<link rel="stylesheet" href="style.css">
<!-- GOOGLE FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap" rel="stylesheet">
</head>
<body>
<div id="main-container">
<div>
<h1 id="main-title">تحدث معي</h1>
</div>
<div id="main-content">
<input id="word-input" type="text" placeholder="اسأل ما تشاء للذكاء الاصطناعي..">
<button id="submit-btn">إرسال</button>
</div>
<div id="reply-content">
أهلا بك.. اطرح أي سؤال يدور في بالك
</div>
</div>
</body>
<!-- AXIOS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.3.4/axios.min.js"></script>
<script src="script.js"></script>
</html>