Skip to content

Instantly share code, notes, and snippets.

@harinduravin
Created August 18, 2021 19:42
Show Gist options
  • Save harinduravin/90a3e4675d84bb622eefae1b5bae7c1d to your computer and use it in GitHub Desktop.
Save harinduravin/90a3e4675d84bb622eefae1b5bae7c1d to your computer and use it in GitHub Desktop.
html file for loading the web page for flask server
<!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