mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-10-31 08:11:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			982 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			982 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en" style="height: 100%; overflow: hidden">
 | |
|   <head>
 | |
|     <meta charset="utf-8">
 | |
|     <title>Matrix React SDK Example</title>
 | |
|     <link href='https://fonts.googleapis.com/css?family=Muli:300,400' rel='stylesheet' type='text/css'>
 | |
|   </head>
 | |
|   <body style="height: 100%;">
 | |
|     <audio id="ringbackAudio" loop>
 | |
|         <source src="media/ringback.ogg" type="audio/ogg" />
 | |
|         <source src="media/ringback.mp3" type="audio/mpeg" />
 | |
|     </audio>
 | |
|     <audio id="callendAudio">
 | |
|         <source src="media/callend.ogg" type="audio/ogg" />
 | |
|         <source src="media/callend.mp3" type="audio/mpeg" />
 | |
|     </audio>
 | |
|     <audio id="busyAudio">
 | |
|         <source src="media/busy.ogg" type="audio/ogg" />
 | |
|         <source src="media/busy.mp3" type="audio/mpeg" />
 | |
|     </audio>
 | |
|     <section id="matrixchat" style="height: 100%;"></section>
 | |
|     <script src="bundle.js"></script>
 | |
|     <link rel="stylesheet" href="node_modules/matrix-react-sdk/bundle.css">
 | |
|   </body>
 | |
| </html>
 |