85 lines
2.4 KiB
HTML
85 lines
2.4 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en" dir="ltr">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>hub</title>
|
||
|
<link rel="stylesheet" href="css/plyr.css"/>
|
||
|
<link rel="stylesheet" href="css/video.css">
|
||
|
<link rel="stylesheet" href="css/random.css">
|
||
|
|
||
|
|
||
|
<!-- Latest compiled and minified CSS -->
|
||
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
|
||
|
|
||
|
<!-- jQuery library -->
|
||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
||
|
|
||
|
<!-- Popper JS -->
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
|
||
|
|
||
|
<!-- Latest compiled JavaScript -->
|
||
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
|
||
|
|
||
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
|
||
|
|
||
|
<script src="js/plyr.js"></script>
|
||
|
<script src="js/random.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<!-- Grey with black text -->
|
||
|
<nav class="navbar navbar-expand-sm bg-primary navbar-dark">
|
||
|
<!-- Brand -->
|
||
|
<a class="navbar-brand" href="#">Lukis Tube</a>
|
||
|
|
||
|
<ul class="navbar-nav">
|
||
|
<li class="nav-item">
|
||
|
<a class="nav-link" href="index.html">Home</a>
|
||
|
</li>
|
||
|
<li class="nav-item active">
|
||
|
<a class="nav-link" href="random.html">Random Video</a>
|
||
|
</li>
|
||
|
<li class="nav-item">
|
||
|
<a class="nav-link" href="category.html">Categories</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</nav>
|
||
|
|
||
|
<div class="videopagewrapper hideit">
|
||
|
<div class="row">
|
||
|
<div class="col-sm-2">
|
||
|
<div class="videoleftbanner">
|
||
|
<div class="likefield">Likes: 10</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-sm-8">
|
||
|
<div class="videowrapper"></div>
|
||
|
</div>
|
||
|
<div class="col-sm-2">
|
||
|
<div class="closebutton">Close</div>
|
||
|
<div class="videorightbanner"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<div class="col-sm-5">
|
||
|
|
||
|
|
||
|
</div>
|
||
|
<div class="col-sm-2">
|
||
|
<button id="likebtn">Like it!</button>
|
||
|
<button id="tagbutton">Tag it!</button>
|
||
|
|
||
|
</div>
|
||
|
<div class="col-sm-5">
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="previewcontainer">
|
||
|
</div>
|
||
|
<div style="width: 100%"><button type="button" id="shufflebtn" class="btn btn-success">Shuffle</button></div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|