File size: 1,223 Bytes
46183a2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<html>
    <!-- Title -->
    <head>
        <title>FastAPI Hello World</title>
    </head>

    <!-- Stylesheet -->
    <style>
        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            margin: 0;
            padding: 0;
        }
        h1 {
            font-size: 2em;
            margin: 0;
            padding: 0;
            /* Center */
            text-align: center;
        }
        h3 {
            margin: 0;
            padding: 0;
            /* Center */
            text-align: center;
        }

    </style>

    <!-- Body -->
    <body>
        <h1>FastAPI Hello World Example</h1>
        
        <h3>
            This is a simple example of a FastAPI Hello World application using Docker. See the links below for more information.
        </h3>
        <!-- List of different relevant links and descriptions about them -->
        
        <div style="margin: 0 auto; width: 50%;">

        <ul>
            <!-- Link to self /docs -->
            <li>
                <a href="/docs">This API's Interactive Swaggar Docs</a> - Try the API out here!
            </li>
        </ul>
        </div>

    </body>
</html>