Spaces:
Running
Running
chokiproai
commited on
Update index.html
Browse files- index.html +76 -19
index.html
CHANGED
@@ -1,19 +1,76 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
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 |
+
<title>Welcome to My Website</title>
|
9 |
+
<style>
|
10 |
+
body {
|
11 |
+
font-family: Arial, sans-serif;
|
12 |
+
margin: 0;
|
13 |
+
padding: 0;
|
14 |
+
background-color: #f0f0f0;
|
15 |
+
}
|
16 |
+
|
17 |
+
.header {
|
18 |
+
background-color: #007bff;
|
19 |
+
color: white;
|
20 |
+
padding: 20px;
|
21 |
+
text-align: center;
|
22 |
+
}
|
23 |
+
|
24 |
+
.header a {
|
25 |
+
color: #ff9900;
|
26 |
+
}
|
27 |
+
|
28 |
+
.container {
|
29 |
+
max-width: 800px;
|
30 |
+
margin: auto;
|
31 |
+
padding: 20px;
|
32 |
+
}
|
33 |
+
|
34 |
+
.card {
|
35 |
+
margin-bottom: 20px;
|
36 |
+
border: none;
|
37 |
+
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
|
38 |
+
}
|
39 |
+
|
40 |
+
.card .btn {
|
41 |
+
background-color: #007bff;
|
42 |
+
color: white;
|
43 |
+
}
|
44 |
+
</style>
|
45 |
+
</head>
|
46 |
+
|
47 |
+
<body>
|
48 |
+
<header class="header">
|
49 |
+
<h1>Welcome to Website (I'm so busy now! Wait for me, this will be the page containing all the projects!)</h1>
|
50 |
+
<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">contact me</a>.</p>
|
51 |
+
</header>
|
52 |
+
|
53 |
+
<div class="container">
|
54 |
+
<div class="card">
|
55 |
+
<div class="card-body">
|
56 |
+
<h5 class="card-title">π</h5>
|
57 |
+
<p class="card-text">1.</p>
|
58 |
+
<a href="#" class="btn">Start</a>
|
59 |
+
</div>
|
60 |
+
</div>
|
61 |
+
|
62 |
+
<div class="card">
|
63 |
+
<div class="card-body">
|
64 |
+
<h5 class="card-title">π</h5>
|
65 |
+
<p class="card-text">2.</p>
|
66 |
+
<a href="#" class="btn">Start</a>
|
67 |
+
</div>
|
68 |
+
</div>
|
69 |
+
|
70 |
+
<!-- Add more cards as needed -->
|
71 |
+
</div>
|
72 |
+
|
73 |
+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
|
74 |
+
</body>
|
75 |
+
|
76 |
+
</html>
|