-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (59 loc) · 1.81 KB
/
index.html
File metadata and controls
60 lines (59 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Nathan Roszko - Developer</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 1rem;
text-align: center;
}
section {
padding: 1.5rem;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem;
position: fixed;
width: 100%;
bottom: 0;
}
a {
color: #0066cc;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1>Nathan Roszko</h1>
<p>Developer | Custom Automations | Chrome Extensions</p>
</header>
<section>
<h2>About Me</h2>
<p>Hi! I'm Nathan, a Pipeline Control Center Foreman with a passion for building tools and optimizing processes. I specialize in creating Chrome extensions, Power Automate flows, and backend integrations to streamline operations.</p>
<h2>Projects</h2>
<ul>
<li><a href="privacy.html">Privacy Policy for SPCCTools Cisco Caller ID Extension</a></li>
<li><a href="eLog-to-SAP-project-overview.html">SPCCTools eLog Enhancements Extension</a></li>
<!-- Add other project links here -->
</ul>
</section>
<footer>
<p>Connect with me on <a href="https://github.com/nroszko">GitHub</a></p>
</footer>
</body>
</html>