2021-07-23 14:29:57 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
2021-07-25 20:10:09 +00:00
|
|
|
<head>
|
|
|
|
<title>Maya's Stream</title>
|
|
|
|
<meta name="author" content="Luna">
|
|
|
|
<meta name="description" content="Maya's Stream">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<link rel="stylesheet" href="index.css">
|
|
|
|
<link rel="icon" href="/favicon.svg">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<nav>
|
|
|
|
|
|
|
|
<ul class="navigation-list">
|
|
|
|
<li><a href="index.html">
|
|
|
|
<div class="buttons">Stream</div>
|
|
|
|
</a></li>
|
|
|
|
<li><a href="chat.html">
|
|
|
|
<div class="buttons">Just Chat</div>
|
|
|
|
</a></li>
|
|
|
|
<li><a href="register.html">
|
|
|
|
<div class="buttons">Register</div>
|
|
|
|
</a></li>
|
|
|
|
<li><a href="login.html">
|
|
|
|
<div class="buttons">Login</div>
|
|
|
|
</a></li>
|
|
|
|
<li><a href="updateinfo.html">
|
|
|
|
<div class="buttons">Update Info</div>
|
|
|
|
</a></li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
</nav>
|
2021-07-23 14:29:57 +00:00
|
|
|
|
|
|
|
<main>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
|
2021-07-25 20:10:09 +00:00
|
|
|
<div id="streamchat">
|
|
|
|
<div id="twitch-embed"></div>
|
2021-07-23 14:29:57 +00:00
|
|
|
|
2021-07-25 20:10:09 +00:00
|
|
|
<!-- Load the Twitch embed JavaScript file -->
|
|
|
|
<script src="https://embed.twitch.tv/embed/v1.js"></script>
|
|
|
|
|
|
|
|
<!-- Create a Twitch.Embed object that will render within the "twitch-embed" element -->
|
|
|
|
<script type="text/javascript">
|
|
|
|
new Twitch.Embed("twitch-embed", {
|
|
|
|
width: 960,
|
|
|
|
height: 540,
|
|
|
|
channel: "mayamayagirl",
|
|
|
|
layout: "video",
|
|
|
|
autoplay: false,
|
|
|
|
muted: true,
|
|
|
|
// Only needed if this page is going to be embedded on other websites
|
|
|
|
parent: ["embed.example.com", "othersite.example.com"]
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<iframe id="chatbox" src="chat.html" title="chat box" scrolling="no"></iframe>
|
|
|
|
|
|
|
|
</div>
|
2021-07-23 14:29:57 +00:00
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
</main>
|
2021-07-25 20:10:09 +00:00
|
|
|
</body>
|
2021-07-23 14:29:57 +00:00
|
|
|
|
2021-07-25 20:10:09 +00:00
|
|
|
</html>
|