-
Notifications
You must be signed in to change notification settings - Fork 0
/
videos.html
166 lines (148 loc) · 6.05 KB
/
videos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Skyler Basco | Home</title>
<link rel="stylesheet" href="app.css">
<script src="https://kit.fontawesome.com/66aa7c98b3.js" crossorigin="anonymous"></script>
<script>
window.onload = function () {
const hamburger = document.querySelector(".hamburger");
const navMenu = document.querySelector(".nav-menu");
hamburger.addEventListener("click", mobileMenu);
function mobileMenu() {
hamburger.classList.toggle("active");
navMenu.classList.toggle("active");
}
}
</script>
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="index.html" class="nav-logo">Skyler Basco</a>
<ul class="nav-menu">
<li class="nav-item">
<a href="index.html" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="videos.html" class="nav-link">Videos</a>
</li>
<li class="nav-item">
<a href="projects.html" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="resources.html" class="nav-link">Resources</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</header>
<div class="container-1">
<br />
<br />
<br />
<br />
<br />
<br />
<h1 class="center">My Videos 📹</h1>
<div class="recent-video-videos">
<iframe class="bitlyvideopreview" src="https://www.youtube.com/embed/Vfck2ivMA5E"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<br />
<br />
<br />
<a class="general-button" href="https://www.youtube.com/c/SkylerBasco" target="_blank"
rel="noopener noreferrer">
See more on my channel!
</a>
</div>
<br />
<br />
<br />
<h1 class="center">Why YouTube? ▶️</h1>
<p class="videos-ptext">
My life has always revolved around watching YouTube videos.
<br />
<br />
Joey Graceffa was the 1st YouTuber I’d watch regularly. From vlogs to Minecraft, he shaped my love for video
games and helped me find my voice.
<br />
<br />
At 13, I met him at ComicCon 2016. It was one of the best days ever.
</p>
<div class="skylerjoeypic" text-align="center">
<img class="skylerjoeypicdimensions" text-align="center"
src="https://cdn.glitch.global/53a3415d-1f94-42fa-9c52-8076d07f9d8c/image%2039.png"></img>
<h6 class="videos-h6text">Above: 13-year-old me meeting Joey Graceffa and giving him a piece of fan art I
made.</h6>
</div>
<br />
<br />
<h1 class="center">How I started 🏁</h1>
<p class="videos-ptext">
Before college, I binge-watched “day in the life” videos from tech YouTubers, ranging from software
engineers to UX designers.
<br />
<br />
While doing my 1st SWE Internship, I thought, <i>'What if I shared my experiences too?'</i>
<br />
<br />
So I posted my first video, and now I’m vlogging my journey as I navigate through tech and help others find
their voice in it along the way.
</p>
<br />
<h1 class="center">Let's gooo! 🔥</h1>
<p class="videos-ptext">
Join me in my journey as a chaotic coder, designer, CS student, & more!
</p>
<div class="center">
<a class="general-button" href="https://www.youtube.com/c/SkylerBasco" target="_blank"
rel="noopener noreferrer">
Subscribe to my channel!
</a>
</div>
<p class="videos-ptext">
P.S. Joey Graceffa, I hope to meet you again one day to thank you for inspiring me to break out of my
comfort zone – both through this YouTube channel and in life as a whole.
</p>
<br />
<h1 class="center">Biz Inquiries 📨</h1>
<p class="videos-ptext">
For any social media sponsorship, collaboration, or business inquiries, feel free to email me at <a
href="mailto:theskylerbasco@gmail.com?subject = Feedback&body = Message"
class="revuelinks">theskylerbasco@gmail.com</a>! Happy to chat.
</p>
</div>
<br />
<br />
<div class="newestvideoslanding">
<footer class="socialsfooter">
<p class="socialsfooter">
Thanks for scrolling by! Want to connect?
</p>
<div class="icons">
<a href="https://youtube.com/c/skylerbasco"><i class="fab fa-youtube"></i></a>
<a href="https://linkedin.com/in/skylerbasco"><i class="fab fa-linkedin"></i></a>
<a href="https://instagram.com/theskylerbasco"><i class="fab fa-instagram"></i></a>
<a href="mailto:theskylerbasco@gmail.com?subject = Feedback&body = Message"><i
class="fa fa-envelope"></i></a>
<p class="socialsfooter">
© 2022 Skyler Basco. All Rights Reserved.
</p>
</div>
</footer>
</div>
</body>
</html>