Created
August 18, 2021 19:42
-
-
Save harinduravin/90a3e4675d84bb622eefae1b5bae7c1d to your computer and use it in GitHub Desktop.
html file for loading the web page for flask server
This file contains 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> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>References</title> | |
<style type="text/css"> | |
@import url("{{ url_for('static', filename='styles.css')}}"); | |
</style> | |
</head> | |
<body> | |
<section class="split left"> | |
<div class="centered"> | |
<!--source src="mov_bbb.mp4" type="video/mp4"--> | |
<img class = "display_class" id="VideoN" src="{{ url_for('video_feed') }}" style = " width: 80%; height: 100%; padding-left: 10%; "> | |
</div> | |
</section> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment