chokiproai commited on
Commit
e212164
1 Parent(s): f240807

Create ai-chat.html

Browse files
Files changed (1) hide show
  1. ai-chat.html +86 -0
ai-chat.html ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1">
7
+ <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
8
+ <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
9
+ <title>Welcome to My AI Projects</title>
10
+ <style>
11
+ body {
12
+ font-family: 'Roboto', sans-serif;
13
+ margin: 0;
14
+ padding: 0;
15
+ background-color: #f0f0f0;
16
+ }
17
+ .header {
18
+ background-color: #007bff;
19
+ color: white;
20
+ padding: 20px;
21
+ text-align: center;
22
+ border-bottom: 5px solid #0056b3;
23
+ }
24
+ .header a {
25
+ color: #ff9900;
26
+ }
27
+ .container {
28
+ max-width: 800px;
29
+ margin: auto;
30
+ padding: 20px;
31
+ }
32
+ .card {
33
+ border-radius: 15px;
34
+ margin-bottom: 20px;
35
+ border: none;
36
+ box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
37
+ transition: all 0.3s ease;
38
+ }
39
+ .card:hover {
40
+ box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
41
+ transform: scale(1.03);
42
+ }
43
+ .card .btn {
44
+ border-radius: 15px;
45
+ background-color: #007bff;
46
+ color: white;
47
+ transition: all 0.3s ease;
48
+ }
49
+ .card .btn:hover {
50
+ box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
51
+ background-color: #0056b3;
52
+ }
53
+ </style>
54
+ </head>
55
+ <div class="tab-content" id="myTabContent">
56
+ <div class="tab-pane fade show active" id="ai-chat" role="tabpanel" aria-labelledby="ai-chat-tab">
57
+ <div class="row">
58
+ <div class="col-sm-6">
59
+ <div class="card">
60
+ <div class="card-body">
61
+ <h5 class="card-title">1)🌟ChatGPT Free</h5>
62
+ <a href="https://github.com/chokiproai/ChatGPT-Plugins" class="custom-link" target="_blank">Source code: ChatGPT Plugins</a></p>
63
+ <a href="https://34cn89-3000.csb.app" class="btn" target="_blank">Start</a>
64
+ </div>
65
+ </div>
66
+ </div>
67
+ <div class="col-sm-6">
68
+ <div class="card">
69
+ <div class="card-body">
70
+ <h5 class="card-title">2)🌟</h5>
71
+ <p class="card-text">.</p>
72
+ <a href="#" class="btn" target="_blank">Start</a>
73
+ </div>
74
+ </div>
75
+ </div>
76
+ <div class="col-sm-6">
77
+ <div class="card">
78
+ <div class="card-body">
79
+ <h5 class="card-title">3)🌟Copilot (VN)</h5>
80
+ <a href="https://github.com/chokiproai/AI-Copilot" class="custom-link" target="_blank">Source code: Copilot</a></p>
81
+ <a href="https://jpxt29-7860.csb.app" class="btn" target="_blank">Start</a>
82
+ </div>
83
+ <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
84
+ <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
85
+ </body>
86
+ <html>