Spaces:
Running
Running
Update index.html
Browse files- index.html +56 -19
index.html
CHANGED
|
@@ -1,19 +1,56 @@
|
|
| 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 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Hugging Face Spaces Showcase</title>
|
| 7 |
+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
|
| 8 |
+
<style>
|
| 9 |
+
body {
|
| 10 |
+
background-color: #f5f5f5;
|
| 11 |
+
}
|
| 12 |
+
.space-card {
|
| 13 |
+
margin-bottom: 20px;
|
| 14 |
+
}
|
| 15 |
+
</style>
|
| 16 |
+
</head>
|
| 17 |
+
<body>
|
| 18 |
+
<div class="container">
|
| 19 |
+
<h1 class="text-center">Hugging Face Spaces Showcase</h1>
|
| 20 |
+
<div class="row">
|
| 21 |
+
<div class="col-md-4">
|
| 22 |
+
<div class="card space-card">
|
| 23 |
+
<img src="https://via.placeholder.com/300x200" alt="Space 1 Image">
|
| 24 |
+
<div class="card-body">
|
| 25 |
+
<h5 class="card-title">Space 1</h5>
|
| 26 |
+
<p class="card-text">Description of Space 1</p>
|
| 27 |
+
<a href="#" class="btn btn-primary">View Space</a>
|
| 28 |
+
</div>
|
| 29 |
+
</div>
|
| 30 |
+
</div>
|
| 31 |
+
<div class="col-md-4">
|
| 32 |
+
<div class="card space-card">
|
| 33 |
+
<img src="https://via.placeholder.com/300x200" alt="Space 2 Image">
|
| 34 |
+
<div class="card-body">
|
| 35 |
+
<h5 class="card-title">Space 2</h5>
|
| 36 |
+
<p class="card-text">Description of Space 2</p>
|
| 37 |
+
<a href="#" class="btn btn-primary">View Space</a>
|
| 38 |
+
</div>
|
| 39 |
+
</div>
|
| 40 |
+
</div>
|
| 41 |
+
<div class="col-md-4">
|
| 42 |
+
<div class="card space-card">
|
| 43 |
+
<img src="https://via.placeholder.com/300x200" alt="Space 3 Image">
|
| 44 |
+
<div class="card-body">
|
| 45 |
+
<h5 class="card-title">Space 3</h5>
|
| 46 |
+
<p class="card-text">Description of Space 3</p>
|
| 47 |
+
<a href="#" class="btn btn-primary">View Space</a>
|
| 48 |
+
</div>
|
| 49 |
+
</div>
|
| 50 |
+
</div>
|
| 51 |
+
</div>
|
| 52 |
+
</div>
|
| 53 |
+
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
|
| 54 |
+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
|
| 55 |
+
</body>
|
| 56 |
+
</html>
|