Files
MwitVidPlayer/index.html

41 lines
1.2 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css" >
<title>Hello, world!</title>
</head>
<body>
<div class="container">
<h1>Hello, world!</h1>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-8">
<div class="embed-responsive embed-responsive-16by9">
<video class="embed-responsive-item" controls>
<source src="https://www.quirksmode.org/html5/videos/big_buck_bunny.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="media">
<img class="mr-3" src="images/gitea.png" alt="placeholder image" height="96">
<div class="media-body">
<h5 class="mt-0">Media heading</h5>
Test.
</div>
</div>
</div>
</div>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-3.3.1.slim.min.js" ></script>
<script src="js/popper-umd/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>