freeCS-dot-org commited on
Commit
48c3213
1 Parent(s): d3f8dc9

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +46 -14
index.html CHANGED
@@ -1,16 +1,48 @@
1
  <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>FreeCS.org</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <p style="font-size: 25px;">Welcome!</p>
12
- <p>Here We will pusblish all the Models for our project Free Models. <i><a href="http://freecs.org/#projects">(Reade More)</a></i></p>
13
- </p>
14
- </div>
15
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  </html>
 
1
  <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>AI Mission</title>
8
+ <style>
9
+ body {
10
+ font-family: 'Arial', sans-serif;
11
+ background-color: #f4f4f4;
12
+ color: #333;
13
+ margin: 0;
14
+ padding: 0;
15
+ display: flex;
16
+ justify-content: center;
17
+ align-items: center;
18
+ min-height: 100vh;
19
+ }
20
+
21
+ .container {
22
+ text-align: center;
23
+ max-width: 600px;
24
+ }
25
+
26
+ h1 {
27
+ color: #007BFF;
28
+ }
29
+
30
+ p {
31
+ font-size: 1.1em;
32
+ line-height: 1.6;
33
+ }
34
+ </style>
35
+ </head>
36
+
37
+ <body>
38
+
39
+ <div class="container">
40
+ <h1>Our Mission</h1>
41
+ <p>We aim to create powerful, open-source AI models that excel in every task while remaining small-sized and efficient.</p>
42
+ <p>Our goal is to make advanced AI technology accessible to more people, even on consumer-level hardware.</p>
43
+ <p>Join us in this mission to democratize AI. Together, we can unlock the potential of AI for all.</p>
44
+ </div>
45
+
46
+ </body>
47
+
48
  </html>