71 lines
		
	
	
		
			No EOL
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			No EOL
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| 
 | |
| <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>
 | |
| 
 | |
|     <main>
 | |
| 
 | |
|         <section>
 | |
| 
 | |
|             <div id="streamchat">
 | |
|                 <div id="twitch-embed"></div>
 | |
| 
 | |
|                 <!-- 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>
 | |
| 
 | |
|         </section>
 | |
| 
 | |
|     </main>
 | |
| </body>
 | |
| 
 | |
| </html> |