summaryrefslogtreecommitdiffstats
path: root/examples/webenginewidgets/videoplayer/data/index.html
blob: 4a1bdc33e36c609cc6f93d456a129afb4d70f365 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <style type="text/css">
            #ytplayer {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }
        </style>
    </head>
    <body>
        <iframe
            id="ytplayer"
            src="https://www.youtube.com/embed/CjyjEUFn_FI"
            frameborder="0"
            allowfullscreen>
        </iframe>
    </body>
</html>