File size: 1,201 Bytes
f7d93a3
48c3213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f7d93a3
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
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AI Mission</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f4;
            color: #333;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .container {
            text-align: center;
            max-width: 600px;
        }

        h1 {
            color: #007BFF;
        }

        p {
            font-size: 1.1em;
            line-height: 1.6;
        }
    </style>
</head>

<body>

    <div class="container">
        <h1>Our Mission</h1>
        <p>We aim to create powerful, open-source AI models that excel in every task while remaining small-sized and efficient.</p>
        <p>Our goal is to make advanced AI technology accessible to more people, even on consumer-level hardware.</p>
        <p>Join us in this mission to democratize AI. Together, we can unlock the potential of AI for all.</p>
    </div>

</body>

</html>