37 lines
1.0 KiB
HTML
37 lines
1.0 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="col-4 col-md-4">
|
|
Col 2
|
|
</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>
|