Last active
October 11, 2019 10:36
-
-
Save lekansogunle/4651a912eb012da3dccd42ad8d158916 to your computer and use it in GitHub Desktop.
Youtube player
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Youtube Player</title> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="./css/style.css"> | |
<script src="https://code.jquery.com/jquery-3.4.1.js" | |
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"> | |
</script> | |
<script src="./js/index.js"> </script> | |
</head> | |
<body> | |
<div class="container video-page"> | |
<h1 class="display-1">My Video Player</h1> | |
<div class="search"> | |
<input type="text" value="planes"> | |
<button type="button" class="btn btn-primary">Submit</button> | |
</div> | |
<div class="container"> | |
<div class="row"> | |
<div class=" bg-primary video-play embed-responsive embed-responsive-21by9"> | |
</div> | |
</div> | |
</div> | |
<div class="container"> | |
<div class="row"> | |
<div class="suggest-list"> | |
</div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment