-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinventory.html
More file actions
123 lines (62 loc) · 4.27 KB
/
inventory.html
File metadata and controls
123 lines (62 loc) · 4.27 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First GitHub Page</title>
<link rel="stylesheet" href="styles.css">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<header>
<h1>BASEMENT EVIDENCE INVENTORY</h1><h2></h2>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="index.html">Case Report</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html"><button class="btn btn-outline-light">Case Summary</button></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html"><button class="btn btn-outline-light">Subject Profile</button></a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html"><button class="btn btn-outline-light">Timeline</button></a>
</li>
<li class="nav-item">
<a class="nav-link" href="inventory.html"><button class="btn btn-outline-light">Evidence Inventory</button></a>
</li>
<li class="nav-item">
<a class="nav-link" href="systemlogs.html"><button class="btn btn-outline-light">Recovered Logs</button></a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="container my-5">
<p><strong>Subject:</strong> Johnathan Sinclare<br><b>Location:</b>Residential sub-level Workspace<br><b>Case Number:</b> MP-O26-JX<br><b>Date of Entry:</b> 15 February 2026</p><br>
<p>A systematic search of the subject's residential basement was conducted following notification of his disappearance on 14 February 2026. The environment displayed signs of extensive technical modification inconsistency with standard personal computing or registered occupational duties.</p>
<p>The following items were recovered:</p>
<h3>ITEM 001: Multi-Display Processing Station</h3>
<p>A six-monitor computing array configured for parallel runtime simulation was located along the north-facing wall of the workspace. Device logs indicate sustained operational activity during late-night hours, with no signs of interruption or shutdown until the subject's disappearance.</p>
<h3>ITEM 002: PROTOTYPE HARDWARE COMPONENTS</h3>
<p>Several custom-built hardware components were found in a locked storage compartment within the workspace. These components appear to be part of an experimental computing system, with no known commercial equivalent. Initial analysis suggests they were designed for high-performance processing and data encryption. Unregistered mechenical components include; sensor arrays and modified micro-proccesing units were concealed beneath a storage unit.</p>
<h3>ITEM 003:PERSONAL DOCUMENTATION LOGS</h3>
<p>Handwritten journals detailing structured developmental phases of an unnamed technical system were located near the subject's desk area.<br>Recurrent documentated entries include;<br>-Response latency reduced<br>-Host interaction inconsistent<br>-Environmental noise interferring<br>-Still adapting</p>
<h2>IVESTIGATOR'S NOTE:</h2>
<p>The basement environment contained technical infrastructure unrelated to the subject's documented occupational responsibilities and suggests the development of an independent experimental system requiring environmental monitoring and containment protocols.</p>
</main>
<footer>
<p>© 2026 JESSICAH MMOLOKE</p>
</footer>
<!-- Bootstrap JS and dependencies -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"></script>
</body>
</html>