-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (64 loc) · 3.33 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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="utf-8">
<title>JoshKupka</title>
<meta name="description" content="">
<link rel="stylesheet" href="./styles.css">
<script src="https://kit.fontawesome.com/0848c132b0.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
</head>
<body>
<div class="PAGE_CONTAINER">
<div class="NAVBAR_CONTAINER">
<div class="NAVBAR">
<a href="/index.html"><img src="Mascot tilted.png" alt="Logo"></a>
<ul id="nav-links">
<li><a href="/projects.html">Projects</a></li>
<li><a href="/hardware.html">Hardware</a></li>
<li><a href="/music.html">Music</a></li>
<li><a href="https://powerplays.live">Merch</a></li>
<li><a href="https://x.com/JoshKupka"><i class="fa-brands fa-x-twitter"></i></a></li>
<li><a href="https://twitch.tv/JoshKupka"><i class="fa-brands fa-twitch"></i></a></li>
<li><a href="https://youtube.com/JoshKupka"><i class="fa-brands fa-youtube"></i></a></li>
</ul>
<button type="button" data-theme-toggle class="LIGHTSWITCH"></button>
<button type="button" data-hamburger-toggle class="HAMBURGER_MENU">
<i class="fa-solid fa-bars"></i>
</button>
</div>
</div>
<h2 class="STREAM_HEADER">Watch Me Live!</h2>
<div class="STREAM_CONTAINER">
<script src= "https://player.twitch.tv/js/embed/v1.js"></script>
<div id="twitch-player"></div>
<script type="text/javascript">
var options = {
width: "100%",
height: "100%",
channel: "JoshKupka",
// only needed if your site is also embedded on embed.example.com and othersite.example.com
parent: "joshkupka.com"
};
var player = new Twitch.Player("twitch-player", options);
player.setVolume(0.5);
</script>
</div>
<div class="BIO_CONTAINER">
<div class="BIO_INFO_CONTAINER">
<h1>About Me</h1>
<h3>I am a long time content creator starting all the way back in 2012 on a now deleted youtube channel.</h3>
<br/>
<h3>I started streaming on Twitch in 2015 and became a Affiliate in July of 2018.</h3>
<br/>
<h3>In 2020 I started an actual team on twitch called the Spectrum Streamers, focused on bringing awareness to Autism in the Streaming Space. </h3>
</div>
<img src="BioPic.jpg" alt="Picture of Me">
</div>
</div>
<script src="./theme-script.js"></script>
<script src="./hamburger-script.js"></script>
</body>
</html>