-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
256 lines (230 loc) · 6.69 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" conent="Patrick Zender" />
<meta
name="Home"
content="The PZ consulting website is a personal site for Patrick Zender and his consulting services.."
/>
<title>Home - PZ Consulting</title>
<style>
/* General Page Formatting */
p {
text-indent: 30px;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.2em;
text-indent: 3%;
text-align: left;
width: auto;
color: #12343b;
}
h1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 3em;
text-align: center;
width: auto;
color: #12343b;
}
a:link {
color: #2d545e;
text-decoration: none;
cursor: pointer;
}
a:visited {
color: #2d545e;
text-decoration: none;
cursor: pointer;
}
body {
margin: 1em;
font-size: 1.2em;
width: 100%;
font-family: Arial, Helvetica, sans-serif;
background-color: #c89666;
}
/* Navbar & Logo */
.navbar {
overflow: hidden;
background-color: #e1b382;
text-align: center;
width: auto;
}
.navbar a {
text-align: center;
display: inline-block;
color: white;
text-align: center;
text-decoration: none;
width: auto;
font-size: 1.2em;
border-right: 1px dashed white;
border-left: 1px dashed white;
border-top: 1px dashed white;
border-bottom: 1px dashed white;
padding: 10px 10px;
margin: 1em;
}
.navbar a:hover {
background-color: #12343b;
color: white;
cursor: pointer;
}
.welcomeLink {
text-align: center;
display: block;
color: #2d545e;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.2em;
text-decoration: underline;
cursor: pointer;
margin-top: 1em;
}
@keyframes colorChange {
0% { color: #3986af; }
50% { color: #1b3ecd; }
50% { color: #8225d2; }
}
/* Bottom of page */
.bottomlinks {
overflow: hidden;
background-color: #e1b382;
padding: 10px 10px;
text-align: center;
}
.bottomlinks a {
text-align: center;
display: inline-block;
color: white;
text-align: center;
text-decoration: none;
width: auto;
font-size: 1.2em;
border-right: 1px dashed white;
border-left: 1px dashed white;
border-top: 1px dashed white;
border-bottom: 1px dashed white;
padding: 10px 10px;
margin: 1em;
}
.bottomlinks a:hover {
background-color: #12343b;
color: white;
cursor: pointer;
}
#copyright {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.2em;
text-decoration: none;
color: white;
}
#image {
margin: 1em;
display: flex;
justify-content: center;
}
img {
height: 600px;
width: 800px;
}
#welcomeMessage {
display: none;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.4em;
color: #12343b;
margin-top: 1em;
}
#title:hover {
animation: colorChange 1s infinite;
}
#logo {
border: none;
cursor: pointer;
padding-bottom: 15px;
height: 89px;
width: 250px;
margin: 1em;
display: inline-block;
}
/* Mobile Compatibility */
@media (max-width: 770px) {
h1 {
font-size: 2em;
}
p {
font-size: 1em;
}
.navbar a {
font-size: 1em;
padding: 8px 8px;
margin: 0.5em;
}
.bottomlinks a {
font-size: 1em;
padding: 8px 8px;
margin: 0.5em;
}
img {
height: 300px;
width: 400px;
}
}
</style>
</head>
<body>
<div id="navbar">
<a href="index.html">
<div style="text-align: center">
<img id="logo" src="images/pzlogo1.png" alt="PZ Logo" />
</div>
</a>
<div class="navbar">
<a href="index.html">  Home  </a>
<a href="allaboutme.html">  All About Me  </a>
<a href="valueprop.html">  Value Proposition  </a>
<a href="services.html">  Services  </a>
<a href="book.html">  Book  </a>
<a href="faqs.html">  FAQs  </a>
</div>
</div>
<div id="image">
<img
src="images/consulting.jpg"
alt="consultation in progress"
title="consulting"
/>
</div>
<p class="welcomeLink" onclick="displayWelcomeMessage()">Click for a revelation...</p>
<p id="welcomeMessage">Welcome to my consulting services page. See those beatings in my name below? They represent your businesse's healthy heartbeat after working with me. Don't believe me? Look around my page and see for yourself.</p>
<h1 id="title" onmouseover="changeTitleColor()" onmouseout="resetTitleColor()">Patrick Zender Consulting</h1>
<p>
As a consultant, I help businesses of all sizes and
industries overcome challenges, seize opportunities, and achieve their
goals. With years of experience working with clients across various
sectors, I bring a unique perspective and a wealth of expertise to every
project. Whether you need help with strategy, management, finance, human
resources, or technology, I have the skills and knowledge to help you
succeed. I am committed to providing customized solutions tailored to your
specific needs and working closely with you every step of the way. Browse
my website to learn more about the services I offer and how I can help
your business grow and thrive.
</p>
<div class="bottomlinks">
<a href="index.html">  Home  </a>
<a href="sitemap.html">  Sitemap  </a>
<a href="faqs.html">  Connect With Me  </a>
</div>
<p id="copyright">Patrick Zender 2023 ©</p>
<script>
function displayWelcomeMessage() {
const welcomeMessage = document.getElementById("welcomeMessage");
welcomeMessage.style.display = "block";
}
</script>
</body>
</html>