-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (142 loc) · 6.11 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-PRCZZS');</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tim Barcz - Portfolio</title>
<link rel="shortcut icon" href="#">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #0779e4 3px solid;
}
header h1 {
text-align: center;
margin: 0;
padding-bottom: 10px;
}
nav {
display: flex;
justify-content: space-around;
padding: 10px 0;
background: #444;
}
nav a {
color: #fff;
text-decoration: none;
}
section {
padding: 20px;
}
.about, .skills, .projects, .contact {
margin-bottom: 20px;
}
</style>
<!--V<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">-->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PRCZZS"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<header>
<div class="container">
<h1>Tim Barcz - Portfolio</h1>
</div>
</header>
<nav>
<div class="container">
<a href="#about">About Me</a>
<a href="#skills">Skills</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</div>
</nav>
<section id="about">
<div class="container">
<h2>About Me</h2>
<p>
I'm an accomplished, energetic, and technically sophisticated ecommerce leader and revenue driver. I'm a detail oriented person with a unique ability to efficiently break down complex technical problems, develop an action-oriented plan, and execute that plan, leading to immediate revenue growth and an improved customer experience. I have a long and successful track record of enhancing team performance productivity, attracting new and repeat business, and driving optimized customer experience.</p>
<p>
I believe in the power of technology and what technology can do for a business. It used to be the case that businesses couldn't or didn't see the immense opportunities that were available to them. Today that is no longer the case. Businesses know what technology can do for them. The sad reality however is the vast majority of businesses I've encountered are not getting the value from their existing technology investments or are not sure how to best make investments that will yield a return.
I have the knowledge, and skillset to walk into a business and help
them understand what's truly possible and how to get there. My background in software and more recent experience in eCommerce and marketing lead me to be the ideal person in today's rapidly changing environments.</p>
<p>
Further, I believe that teams outperform individuals. Relentless curiosity and learning in all aspects of operations. Simplicity over complexity
in systems and architectures. Quality as a core principle. Agile methodologies bring more success, and details matter, and I sweat the details.
</p>
</div>
</section>
<section id="skills">
<div class="container">
<h2>Skills</h2>
<h3>Leadership & Executive Competencies:</h3>
<ul>
<li>Change management</li>
<li>Team building and talent development</li>
<li>Forecasting and budget development</li>
<li>Digital transformation</li>
<li>Strategic planning</li>
<li>P&L management</li>
</ul>
<h3>Product Management & Development:</h3>
<ul>
<li>E-commerce
<li>User experience and customer discovery</li>
<li>Research and development/innovation</li>
<li>Project management</li>
<li>Agile and Lean methodologies</li>
<li>Enterprise architecture</li>
</ul>
<h3>Strategic & Digital Marketing:</h3>
<ul>
<li>Digital analytics</li>
<li>Search engine optimization (SEO)</li>
<li>Search engine marketing (SEM/PPC)</li>
<li>Email marketing</li>
<li>Customer data</li>
<li>Direct mail</li>
</ul>
</div>
</section>
<section id="projects">
<div class="container">
<h2>Projects</h2>
<p>More to come here....Oh the things</p>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact</h2>
<p>In order to get in touch please visit my <a href="http://www.linkedin.com/in/timbarcz/">LinkedIn profile</a> or you can email me at gmail (using my firstname and lastname together with no spaces)</p>
</div>
</section>
<footer>
<div class="container">
<p>© Tim Barcz, 2024</p>
<a href="http://www.linkedin.com/in/timbarcz/">LinkedIn</a>
</div>
</footer>
</body>
</html>