94 lines
3.1 KiB
HTML
94 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet" />
|
|
<link href="./room-style.css" rel="stylesheet" />
|
|
<script type="text/javascript" defer src="room.js"></script>
|
|
<title>Document</title>
|
|
|
|
<!-- Bootstrap -->
|
|
<!-- Font Awesome -->
|
|
<link
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<!-- Google Fonts -->
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<!-- MDB -->
|
|
<link
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.0.0/mdb.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<!-- MDB -->
|
|
<script
|
|
type="text/javascript"
|
|
defer src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.0.0/mdb.min.js"
|
|
></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="header">
|
|
|
|
<!-- navbar icon -->
|
|
<nav class="navbar navbar-light bg-dark">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#">
|
|
<img
|
|
src="images/logo-bez-tla.png"
|
|
height="120"
|
|
alt=""
|
|
loading="lazy"
|
|
/>
|
|
</a>
|
|
|
|
<!-- search form -->
|
|
<form class="d-flex input-group w-50 ">
|
|
<input type="search" class="form-control" id="yt-link" placeholder="Wklej link do filmu na youtubie" aria-label="Search"/>
|
|
<button class="btn btn-outline-light" id="link-do-filmu-btn" type="button" data-mdb-ripple-color="light">
|
|
Oglądaj!
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
|
|
|
|
<!-- YT PLAYER -->
|
|
|
|
<div class="row light-dark d-flex justify-content-center">
|
|
<div class="col-md-8 d-flex justify-content-center">
|
|
<div id="player">
|
|
<iframe id="yt-player-iframe" width="900" height="500" src="https://www.youtube.com/embed/9YffrCViTVk" frameborder="0"
|
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
|
allowfullscreen></iframe>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<!-- CHAT -->
|
|
<div id="chat" class="col-md-4 d-flex justify-content-center">
|
|
dsadsa
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div id="footer" class="fixed-bottom">
|
|
|
|
<footer class="bg-grey text-center text-lg-start">
|
|
<!-- Copyright -->
|
|
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.4)">
|
|
|
|
<a class="text-light" href="https://mdbootstrap.com/">Stworzone przez Kacpra Maja na zajecia Pracowni Programowania</a>
|
|
<br/>
|
|
<a class="text-light" href="https://mdbootstrap.com/">Numer indeksu: 457990</a>
|
|
</div>
|
|
<!-- Copyright -->
|
|
</div>
|
|
</body>
|
|
</html> |