-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (63 loc) · 1.55 KB
/
Copy pathindex.html
File metadata and controls
65 lines (63 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Oliver's Tech Projects</title>
<style>
body {
background-color: #121212;
color: #eee;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 2rem;
text-align: center;
}
header {
margin-bottom: 2rem;
}
h1 {
color: #4caf50;
font-size: 3rem;
}
p {
font-size: 1.25rem;
max-width: 600px;
margin: 0 auto 2rem auto;
}
a {
color: #4caf50;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
footer {
margin-top: 3rem;
font-size: 0.9rem;
color: #888;
}
</style>
</head>
<body>
<header>
<h1>Oliver's Tech Projects</h1>
<p>Welcome! I'm Oliver, a 10-year-old tech enthusiast. Here I share my projects and ideas.</p>
</header>
<section>
<h2>Infinite Term Servicing Channel (ITSC)</h2>
<p>
A new Windows servicing model I designed that combines long-term stability with rolling updates and full user control.
</p>
<p>
<a href="https://docs.google.com/document/d/1ggPIt79FGtfLQXt_RRNFaHzXVaEUtjizno8rhp8i8F4/edit?usp=sharing" target="_blank" rel="noopener noreferrer">
Read the full ITSC proposal here
</a>
</p>
</section>
<footer>
© 2025 Oliver Ferguson
</footer>
</body>
</html>