-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
27 lines (27 loc) · 941 Bytes
/
about.html
File metadata and controls
27 lines (27 loc) · 941 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About - Lori Framework</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Lori Framework</h1>
<nav>
<a href="index.html">Home</a>
<a href="modules.html">Modules</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<h2>About the Lori Framework</h2>
<p>Lori Framework is an independent initiative that designs non-binding, ethical, and strategic architectures for AI, LEO satellite systems, and international digital cooperation. We are not affiliated with any government or corporation.</p>
<p><strong>Disclaimer:</strong> All content is exploratory and non-binding. Ideas may be freely adapted by others under mutual respect and ethical alignment.</p>
</main>
<footer>
<p>© 2025 Lori Framework Team</p>
</footer>
</body>
</html>