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"> | |
<title>Welcome to My Website</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
margin: 0; | |
padding: 0; | |
background-color: #f0f0f0; | |
} | |
.header { | |
background-color: #007bff; | |
color: white; | |
padding: 20px; | |
text-align: center; | |
} | |
.header a { | |
color: #ff9900; | |
} | |
.container { | |
max-width: 800px; | |
margin: auto; | |
padding: 20px; | |
} | |
.card { | |
margin-bottom: 20px; | |
border: none; | |
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1); | |
transition: all 0.3s ease; | |
} | |
.card:hover { | |
transform: scale(1.03); | |
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); | |
} | |
.card .btn { | |
background-color: #007bff; | |
color: white; | |
transition: all 0.3s ease; | |
} | |
.card .btn:hover { | |
background-color: #0056b3; | |
} | |
</style> | |
</head> | |
<body> | |
<header class="header"> | |
<h1>Welcome to Website (I'm so busy now! Wait for me, this will be the page containing all the projects!)</h1> | |
<p>This is an introductory website, aimed at helping more people use AI. If there is any website that is not working, please <a href="https://huggingface.co/spaces/ngoctuanai/project/discussions" target="_blank">contact me</a>.</p> | |
<p id="onlineCount">Users online: <span>0</span></p> | |
</header> | |
<div class="container"> | |
<div class="card"> | |
<div class="card-body"> | |
<h5 class="card-title">🌟ChatGPT Free</h5> | |
<p class="card-text">https://github.com/chokiproai/ChatGPT-Plugins</p> | |
<a href="https://34cn89-3000.csb.app" class="btn" target="_blank">Start</a> | |
</div> | |
</div> | |
<div class="card"> | |
<div class="card-body"> | |
<h5 class="card-title">🌟</h5> | |
<p class="card-text">2.</p> | |
<a href="#" class="btn" target="_blank">Start</a> | |
</div> | |
</div> | |
</div> | |
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script> | |
</body> | |
</html> |