-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (82 loc) · 2.28 KB
/
index.html
File metadata and controls
89 lines (82 loc) · 2.28 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Rights of Robots | Reference Framework</title>
<meta name="description" content="A reference framework for accountability, legal identity, and technical governance of autonomous machine entities." />
<meta name="robots" content="index,follow" />
<link rel="canonical" href="https://rightsofrobots.com/" />
<style>
:root {
--bg:#0b0c10;
--text:#e9eef7;
--muted:#b6c0d1;
--hair:rgba(255,255,255,.12);
--max:900px;
--font:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
}
body {
margin:0;
font-family:var(--font);
background:var(--bg);
color:var(--text);
line-height:1.55;
}
main {
max-width:var(--max);
margin:0 auto;
padding:72px 20px;
}
h1 {
font-size:36px;
margin:0 0 12px 0;
line-height:1.15;
}
p {
max-width:70ch;
color:var(--muted);
}
hr {
border:0;
border-top:1px solid var(--hair);
margin:40px 0;
}
footer {
font-size:14px;
color:var(--muted);
}
</style>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Rights of Robots – Reference Framework",
"url": "https://rightsofrobots.com/",
"description": "A reference framework for accountability, legal identity, and technical governance of autonomous machine entities.",
"inLanguage": "en"
}
</script>
</head>
<body>
<main>
<h1>Rights of Robots</h1>
<p>
Rights of Robots is a reference framework exploring the technical
prerequisites for accountability, legal identity, and governance
of autonomous machine entities.
</p>
<p>
The project focuses on infrastructure-level conditions such as
verifiable identity, traceable actions, and deterministic
responsibility — without defining moral, political, or human rights.
</p>
<hr />
<footer>
Maintained by semantic.infrastructure<br />
Public reference namespace · No execution layer · No guarantees
</footer>
</main>
</body>
</html>