-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (122 loc) · 4.51 KB
/
index.html
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
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thomas James Leone | Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
header p {
margin: 20px;
font-size: 14px;
color: white;
}
nav {
margin: 0px;
text-align: center;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: #333;
font-weight: bold;
}
section {
padding: 10px;
max-width: 900px;
margin: 0 auto;
}
h2 {
color: #333;
}
p {
color: #fffff;
}
.job-title {
font-weight: bold;
color: #333;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<header>
<h1>Thomas James Leone</h1>
<p>Senior Technical Writer | Content Developer | Prompt Engineer</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#experience">Experience</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
<section id="about">
<h2>About Me</h2>
<p>I am a Senior Technical Writer and Content Developer with experience at leading tech companies like Apple, Google, and Facebook. I specialize in developing comprehensive documentation, white papers, and learning modules, with a focus on technologies such as Kubernetes, cybersecurity, CSS, and prompt engineering. My work bridges the gap between complex technical concepts and clear, concise communication for technical and non-technical audiences alike.</p>
</section>
<section id="experience">
<h2>Professional Experience</h2>
<h3 class="job-title">Google | Sr. Technical Writer/Prompt Engineer/Content Developer</h3>
<p><i>Remote | Oct. 2023 - Sep. 2024</i></p>
<ul>
<li>Contracted to lead the revision and enhancement of Google's Learn CSS modules.</li>
<li>Conducted research and integration of emerging CSS features to keep content current.</li>
<li>Collaborated with cross-functional teams to deliver accessible, engaging content.</li>
</ul>
<h3 class="job-title">Apple | Sr. Technical Writer/Content Developer</h3>
<p><i>Remote | Oct. 2023 - Sep. 2024</i></p>
<ul>
<li>Developed documentation for cloud-based infrastructure, including CI/CD pipelines and Kubernetes.</li>
<li>Authored the iCloud Private Relay white paper, simplifying complex security concepts for a wide audience.</li>
</ul>
<h3 class="job-title">Facebook | Sr. Technical Writer/Content Developer</h3>
<p><i>Hybrid | Apr. 2019 - Oct. 2020</i></p>
<ul>
<li>Developed informational wikis and presentations for Facebook's Infrastructure and Supply Chain departments.</li>
<li>Produced the highest volume of deliverables on the team, consistently measured by internal metrics.</li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li><strong>iCloud Private Relay White Paper:</strong> Authored a detailed white paper outlining the privacy and security architecture of Apple's network relay system.</li>
<li><strong>Google Learn CSS Modules:</strong> Led the enhancement of Google's CSS educational content, ensuring developers have access to the latest in CSS features and best practices.</li>
<li><strong>Facebook Infrastructure Wikis:</strong> Developed comprehensive documentation for internal infrastructure, collaborating with cross-functional teams to ensure clarity and accuracy.</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Feel free to reach out for any inquiries or collaboration opportunities!</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</section>
<footer>
<p>© 2024 Thomas James Leone</p>
</footer>
</body>
</html>