chokiproai commited on
Commit
04f52eb
Β·
verified Β·
1 Parent(s): 794f05c

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +76 -19
index.html CHANGED
@@ -1,19 +1,76 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>