-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
376 lines (321 loc) · 12.1 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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sylvia Mullins</title>
<link rel="icon" type="image/x-icon" href="/Images/Logo/smlogo.png">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
<link href="index.jsx" rel="JavaScript" />
<style>
body {
margin: 0;
padding: 0;
}
.hero {
position: relative;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.hero::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(Images/Landingpage.gif);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
filter: brightness(60%);
}
.hero-content {
position: relative;
color: white;
text-align: center;
margin: 0.625rem;
}
.hero-title {
font-size: 3rem;
font-weight: 400;
margin-bottom: 0;
}
.hero-subtitle {
font-size: 2rem;
font-weight: 200;
margin-top: 1rem;
}
.hero-button {
float: center;
border-radius: 70px;
background-color: #1e706c;
color: white;
border: 1px solid #08313a;
margin-top: 5px;
padding: 10px 10px;
font-size: 40px;
font-weight: 200;
cursor: pointer;
}
.hero-button:hover {
background-color: #48b49d;
border: 1px solid #48b49d;
.landing {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: #f1f1f1;
opacity: 0;
transform: translateY(50px);
transition: opacity 0.5s, transform 0.5s;
}
.landing.visible {
opacity: 1;
transform: translateY(0);
}
h1 {
font-size: 48px;
margin-bottom: 20px;
}
p {
font-size: 24px;
margin-bottom: 40px;
}
.content {
height: 100vh;
background: #ffffff;
opacity: 0;
transform: translateY(50px);
transition: opacity 0.5s, transform 0.5s;
}
.content.visible {
opacity: 1;
transform: translateY(0);
}
#languagesknown{
display: flex;
flex-wrap: wrap;
padding: 5px;
margin: 5px;
max-width: 300px;
min-width: 300px;
}
}
</style>
</head>
<body>
<header>
<script>
window.addEventListener('scroll', revealContent);
function revealContent() {
// Get references to the landing and content sections
var landing = document.querySelector('.landing');
var content = document.querySelector('.content');
// Get the position of the sections relative to the viewport
var landingPosition = landing.getBoundingClientRect().top;
var contentPosition = content.getBoundingClientRect().top;
// Calculate the window height
var windowHeight = window.innerHeight;
// Check if the landing section is in the viewport
if (landingPosition < windowHeight / 2) {
// Add the "visible" class to trigger the fade-in and move-up animation
landing.classList.add('visible');
} else {
// Remove the "visible" class if the landing section is not in the viewport
landing.classList.remove('visible');
}
// Check if the content section is in the viewport
if (contentPosition < windowHeight / 2) {
// Add the "visible" class to trigger the fade-in and move-up animation
content.classList.add('visible');
} else {
// Remove the "visible" class if the content section is not in the viewport
content.classList.remove('visible');
}
}
</script>
<script>
function navFunc() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</header>
<main>
<div class="landing">
<section class="hero">
<div class="hero-content">
<h1 class="hero-title">
Crafting Meaningful Experiences Through Technology!
</h1>
<h2 class="hero-subtitle">
Whether you're a buisness seeking innovation or an employer
looking to hire,
let's collaborate to bring your vision to life. Get in
touch with me today!
</h2>
<button type="button" class="hero-button"
onclick="location.href='contact.html'">
Contact Me! »
</button>
</div>
</div>
<div class="content">
<div class="topnav" id="myTopnav">
<a href="/index.html"><img src="/Images/Logo/name.png"
alt="freelancelogo"></a>
<a href="/aboutme.html">About</a>
<a href="/resume.html">Resume</a>
<a href="/portfolio.html">Portfolio</a>
<a href="/Blog.html">Blog</a>
<a href="/contact.html">Contact</a>
<a href="javascript:void(0);" class="icon"
onclick="navFunc()">
<img src="/Images/Logo/list.svg">
</a>
</div>
</section>
<h2 align="center">//Master of Code: Forging Full-Stack Mastery
Through Training!</h2>
<!--
Requirement 1 (first set):
Visualize data in a user friendly way. (e.g. graph, chart, etc)
&&
Requirement 2 (third set):
Develop your project using a common JavaScript framework
such as React, Angular, or Vue
CURRENTLY IN HTML CSS AND JS FOR SKELETON NEEDS BUILT IN REACT
<div id="languagesknown">
<div class="progress-bar">
<div class="progress-bar-fill" id="progress1"></div>
</div>
<img src="/Images/Logo/css.png"
alt="csslogo" style="width:100px;height:100px;">
<div class="progress-bar">
<div class="progress-bar-fill" id="progress2"></div>
</div>
<img src="/Images/Logo/javascript.png"
alt="javascriptlogo" style="width:100px;height:100px;">
<div class="progress-bar">
<div class="progress-bar-fill" id="progress3"></div>
</div>
<img src="/Images/Logo/react-js.png"
alt="reactlogo" style="width:100px;height:100px;">
<div class="progress-bar">
<div class="progress-bar-fill" id="progress4"></div>
</div>
<img src="/Images/Logo/php_PNG23.png"
alt="phplogo" style="width:100px;height:100px;">
<div class="progress-bar">
<div class="progress-bar-fill" id="progress5"></div>
</div>
<img src="/Images/Logo/java-programming-language.png"
alt="javalogo" style="width:100px;height:100px;">
<div class="progress-bar">
<div class="progress-bar-fill" id="progress6"></div>
</div>
<img src="/Images/Logo/go-programming-language.png"
alt="golanglogo" style="width:100px;height:100px;">
<div class="progress-bar">
<div class="progress-bar-fill" id="progress7"></div>
</div>
<img src="/Images/Logo/python-programming-language.png"
alt="pythonlogo" style="width:100px;height:100px;">
<div class="progress-bar">
<div class="progress-bar-fill" id="progress8"></div>
</div>
<img src="/Images/Logo/mysql_PNG23.png"
alt="mysqllogo" style="width:100px;height:100px;">
<div class="progress-bar">
<div class="progress-bar-fill" id="progress9"></div>
</div>
<img src="/Images/Logo/c.png"
alt="csharplogo" style="width:100px;height:100px;">
<div class="progress-bar">
<div class="progress-bar-fill" id="progress10"></div>
</div>
-->
<div id="root"></div>
<script src="index.js"></script>
</div>
<!--
Requirement 2 (first set):
Use arrays, objects, sets or maps to store and retrieve information
that is displayed in your app
-->
<h2 align="center">//Showcasing Exceptional Work and Creativity</h2>
<div class="gallery"></div>
<script>
const images = [
{ src: 'Images/Portfolio/redball.png', alt: 'Redball Pizza' },
{ src: 'Images/Portfolio/lyman hall theater.png', alt: 'Lyman Hall Theater' },
{ src: 'Images/Portfolio/New Year Bash.png', alt: 'New Years Bash' },
];
const gallery = document.querySelector('.gallery');
images.forEach(image => {
const imgElement = document.createElement('img');
imgElement.src = image.src;
imgElement.alt = image.alt;
gallery.appendChild(imgElement);
});
</script>
<!--
Requirement 3 (second set):
Retrieve data from a third-party API
and use it to display something within your app.
-->
<h2 align="center">//See More? Stay Connected on Github</h2>
<img src="/Images/contributions.png"
alt="githubcontributionplaceholder">
<button
onclick="window.location.href='https://github.com/Helasrebellion';"
class="hero-button">
<img src="/Images/Social Media/github.svg"
alt="githublogo" style="width:700px;height:100px;"> </button>
</main>
</div>
<div id="footer">
<p class="leftfooter">Sylvia Mullins Development © 2022 All rights
reserved</p>
<p class="rightfooter">Follow me<br />
<button
onclick="window.location.href='https://github.com/Helasrebellion';"
class="socialButton">
<img src="/Images/Social Media/github.svg"
alt="githublogo" style="width:30px;height:50px;"> </button>
<button
onclick="window.location.href='https://www.linkedin.com/in/sylviahela/';"
class="socialButton">
<img src="/Images/Social Media/linkedin.svg"
alt="linkedinlogo" style="width:30px;height:50px;"> </button>
<button
onclick="window.location.href='https://www.instagram.com/sylviamullinsdev/';"
class="socialButton">
<img src="/Images/Social Media/instagram.svg"
alt="instagramlogo" style="width:30px;height:50px;"> </button>
<button
onclick="window.location.href='https://twitter.com/SylviaMDev';"
class="socialButton">
<img src="/Images/Social Media/twitter.svg"
alt="twitterlogo" style="width:30px;height:50px;"> </button>
</p>
<p class="centeredfooter">
<img id="logofooter" src="/Images/Logo/smlogo.png"
alt="freelancelogo">
</p>
</div>
</body>
</html>