Spaces:
Running
Running
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet"> | |
<title>AI Chat</title> | |
<style> | |
body { | |
font-family: 'Roboto', sans-serif; | |
margin: 0; | |
padding: 0; | |
background-color: #f0f0f0; | |
} | |
.header { | |
background-color: #007bff; | |
color: white; | |
padding: 20px; | |
text-align: center; | |
border-bottom: 5px solid #0056b3; | |
} | |
.header a { | |
color: #ff9900; | |
} | |
.container { | |
max-width: 800px; | |
margin: auto; | |
padding: 20px; | |
} | |
.card { | |
border-radius: 15px; | |
margin-bottom: 20px; | |
border: none; | |
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1); | |
transition: all 0.3s ease; | |
} | |
.card:hover { | |
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); | |
transform: scale(1.03); | |
} | |
.card .btn { | |
border-radius: 15px; | |
background-color: #007bff; | |
color: white; | |
transition: all 0.3s ease; | |
} | |
.card .btn:hover { | |
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); | |
background-color: #0056b3; | |
} | |
</style> | |
</head> | |
<div class="tab-content" id="myTabContent"> | |
<div class="tab-pane fade show active" id="ai-chat" role="tabpanel" aria-labelledby="ai-chat-tab"> | |
<div class="row"> | |
<div class="col-sm-6"> | |
<div class="card"> | |
<div class="card-body"> | |
<h5 class="card-title">1)🌟ChatGPT Free</h5> | |
<a href="https://github.com/chokiproai/ChatGPT-Plugins" class="custom-link" target="_blank">Source code: ChatGPT Plugins</a></p> | |
<a href="https://chatgptplugins.vercel.app" class="btn" target="_blank">Start</a> | |
</div> | |
</div> | |
</div> | |
<div class="col-sm-6"> | |
<div class="card"> | |
<div class="card-body"> | |
<h5 class="card-title">2)🌟Coze AI (AI Plus)</h5> | |
<p class="card-text">.</p> | |
<a href="https://www.coze.com/s/Zs8M75qpn/" class="btn" target="_blank">Start</a> | |
</div> | |
</div> | |
</div> | |
<div class="col-sm-6"> | |
<div class="card"> | |
<div class="card-body"> | |
<h5 class="card-title">3)🌟Coze AI (Gemini Advanced)</h5> | |
<p class="card-text">.</p> | |
<a href="https://www.coze.com/s/Zs8M7U4Dy/" class="btn" target="_blank">Start</a> | |
</div> | |
</div> | |
</div> | |
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> | |
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script> | |
</body> | |
<html> |