1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>It works!</title>
<style type="text/css">
body {
color: #333;
font-size: 14pt;
}
h1 {
font-size: 24pt;
}
</style>
</head>
<body>
<h1>Woah dude!</h1>
<p>It works!<br/> This file is served locally by a built-in HTTP server.</p>
<h2>Video</h2>
<video width="320" height="240" autoplay controls>
<source src="video.mp4" type="video/mp4">
<source src="video.webm" type="video/webm">
</video>
<h2>Links</h2>
<div><a href='https://pywebview.flowrl.com'>Regular links</a> are opened in the application window.</div>
<div><a href='https://pywebview.flowrl.com' target='_blank'>target='_blank' links</a> are opened in an external browser.</div>
</body>
</html>
|