-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (72 loc) · 2.48 KB
/
index.html
File metadata and controls
90 lines (72 loc) · 2.48 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
90
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,600;1,400&family=IBM+Plex+Sans+Condensed:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css" />
<title>Los Angeles 2099</title>
</head>
<body>
<div class="header">
<h1>LOS ANGELES 2099</h1>
<p class="subtitle">REPLICANT GOVERNANCE BULLETIN</p>
</div>
<!-- 1 -->
<div class="section">
<h2>Wallace Corporation Research Department</h2>
<div class="row">
<img src="./Zone1_1.png" alt="Wallace Corporation Research Department">
<div class="text">
<p>
Wallace Corporation is a leading bioengineering company responsible for advanced replicant research and
development, operating under special regulatory oversight.
</p>
</div>
</div>
</div>
<!-- 2 -->
<div class="section">
<h2>City Law Enforcement Area</h2>
<div class="row">
<img src="./Zone2.png" alt="City Law Enforcement Area">
<div class="text">
<p>
Central operations sector for municipal enforcement and incident response. Handles baseline screening
procedures, compliance checks, and cross-agency coordination within the urban core.
</p>
</div>
</div>
</div>
<!-- 3 -->
<div class="section">
<h2>High-Density Residential Area</h2>
<div class="row">
<img src="./Zone5.png" alt="High-Density Residential Area">
<div class="text">
<p>
Primary habitation corridor supporting continuous shift cycles and shared infrastructure. Public platforms,
transit layers, and communal facilities remain under routine monitoring for crowd safety and identity control.
</p>
</div>
</div>
</div>
<!-- 4 -->
<div class="section unstable">
<h2>City Boundary Area</h2>
<div class="row">
<img src="./Zone4.png" alt="City Boundary Area">
<div class="text">
<p>
Transitional perimeter where standard services end and classification becomes unreliable. Entry is discouraged
due to reduced visibility, limited oversight capacity, and increased risk of misidentification.
</p>
</div>
</div>
</div>
<div class="footer">
<p>Issued by Replicant Oversight Bureau · 2099</p>
</div>
</body>
</html>