File size: 2,375 Bytes
e10d2d6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d260aa7
 
 
 
 
0af61e3
d260aa7
 
 
 
 
0af61e3
d260aa7
e10d2d6
 
 
 
777a11d
e10d2d6
 
 
 
 
5bd3cb5
 
d260aa7
 
 
60275c1
e10d2d6
777a11d
e10d2d6
6c3d0e2
e10d2d6
 
 
 
 
 
 
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #333;
            color: #fff;
            margin: 0;
            padding: 0;
            text-align: center;
        }
        main {
            padding: 80px 0;
            text-align: center;
        }

        header {
            background-color: #222;
            padding: 20px 0;
        }

        h1 {
            color: #fff;
        }

        .button {
            display: inline-block;
            background-color: #555;
            color: #fff;
            padding: 10px 20px;
            text-decoration: none;
            margin: 10px;
            border-radius: 5px;
        }

        .button:hover {
            background-color: #777;
        }

        footer {
            background-color: #222;
            padding: 10px 0;
            position: relative;
            bottom: 0;
            width: 100%;
        }

        footer p {
            font-size: 14px;
            color: #888;
        }
      /* Style for the iframe container */
        .iframe-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 850px; /* You can adjust this to your preference */
        }

        iframe {
            border: none; /* Optional: removes the default border */
            width: 850px; /* Your specified width */
            height: 850px; /* Your specified height */
        }
    </style>
</head>
<body>
    <header>
        <h1>A N I M A - Chat</h1>
    </header>
    <a class="button" href="/">Home</a>
    <a class="button" href="#" onclick="openLink('image-creator.html')">Image Creator</a>
    <a class="button" href="#" onclick="openLink('text-to-speech.html')">Text to Speech</a>
    <a class="button" href="#" onclick="openLink('speech-to-text.html')">Speech to Text</a>

    <!-- Correctly placed iframe -->
    <div class="iframe-container">
        <iframe src="https://severian-anima-7b-biomimicry-llm.hf.space"></iframe>
    </div>

    <footer>
        <p>©️ ANIMA</p>
    </footer>

    <script>
        function openLink(url) {
            window.location.href = url;
        }
    </script>
</body>
</html>