File size: 596 Bytes
ba11222
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">

<head>
  <title>AI API</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 20px;
      background-color: rgb(50, 50, 50);
    }

    .img {
      width: 40vh;
      height: 40vh;
      margin: 30px;
      display: inline-block;
    }

    .video {
      width: 40vh;
      height: 40vh;
      margin: 30px;
      display: inline-block;
    }

    .text {
      color: rgb(223, 223, 223);
    }
  </style>
</head>

<body>
  <h1 class="text">Hello there!</h1>
  <span class="text">For the API use a POST request</span>
</body>

</html>