inital commit, basic functionality and streaming with server working
This commit is contained in:
24
index.html
Normal file
24
index.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Movie Streamer</title>
|
||||
<style>
|
||||
body { font-family: Arial, sans-serif; margin: 0; padding: 20px; }
|
||||
#container { display: flex; }
|
||||
#movies-list { width: 30%; overflow-y: auto; }
|
||||
.movie-item { cursor: pointer; margin-bottom: 10px; display: flex; align-items: center; }
|
||||
.movie-item img { width: 50px; height: auto; margin-right: 10px; }
|
||||
#movie-details { flex-grow: 1; padding-left: 20px; }
|
||||
video { max-width: 100%; margin-top: 10px; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Movie Streamer</h1>
|
||||
<div id="container">
|
||||
<div id="movies-list"></div>
|
||||
<div id="movie-details"></div>
|
||||
</div>
|
||||
<script src="renderer.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user