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 39
|
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>audio/video/source equiv</title>
</head>
<body>
<div class="h-card">
<h1 class="p-name">Alice</h1>
<img src="http://example.org/" class="u-x-example" />
</div>
<div class="h-card">
<h1 class="p-name">Bob</h1>
<audio src="http://example.org/" class="u-x-example" />
</div>
<div class="h-card">
<h1 class="p-name">Clarissa</h1>
<video controls src="http://example.org/" class="u-x-example" />
</div>
<div class="h-card">
<h1 class="p-name">David</h1>
<video controls>
<source src="http://example.org/" class="u-x-example" />
</video>
</div>
<div class="h-card">
<h1 class="p-name">David</h1>
<iframe src="http://example.org/" class="u-x-example">
<p>Your browser does not support iframes.</p>
</iframe>
</div>
</body>
</html>
|