Spaces:
Runtime error
Runtime error
Create templates/index.html
Browse files- templates/index.html +38 -0
templates/index.html
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
|
| 4 |
+
<head>
|
| 5 |
+
<title>AI API</title>
|
| 6 |
+
<style>
|
| 7 |
+
body {
|
| 8 |
+
font-family: Arial, sans-serif;
|
| 9 |
+
margin: 20px;
|
| 10 |
+
background-color: rgb(50, 50, 50);
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
.img {
|
| 14 |
+
width: 40vh;
|
| 15 |
+
height: 40vh;
|
| 16 |
+
margin: 30px;
|
| 17 |
+
display: inline-block;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
.video {
|
| 21 |
+
width: 40vh;
|
| 22 |
+
height: 40vh;
|
| 23 |
+
margin: 30px;
|
| 24 |
+
display: inline-block;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.text {
|
| 28 |
+
color: rgb(223, 223, 223);
|
| 29 |
+
}
|
| 30 |
+
</style>
|
| 31 |
+
</head>
|
| 32 |
+
|
| 33 |
+
<body>
|
| 34 |
+
<h1 class="text">Hello there!</h1>
|
| 35 |
+
<span class="text">For the API use a POST request</span>
|
| 36 |
+
</body>
|
| 37 |
+
|
| 38 |
+
</html>
|