mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
29 lines
976 B
HTML
29 lines
976 B
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
<head>
|
|
<title>XHTML 1.0 Strict Example</title>
|
|
<script type="application/javascript">
|
|
<![CDATA[
|
|
function loadpdf() {
|
|
document.getElementById("pdf-object").src="http://www.w3.org/TR/xhtml1/xhtml1.pdf";
|
|
}
|
|
]]>
|
|
</script>
|
|
</head>
|
|
<body onload="loadpdf()">
|
|
<p>This is an example of an
|
|
<abbr title="Extensible HyperText Markup Language">XHTML</abbr> 1.0 Strict document.<br />
|
|
<img id="validation-icon"
|
|
src="http://www.w3.org/Icons/valid-xhtml10"
|
|
alt="Valid XHTML 1.0 Strict"/><br />
|
|
<object id="pdf-object"
|
|
type="application/pdf"
|
|
data="http://www.w3.org/TR/xhtml1/xhtml1.pdf"
|
|
width="100%"
|
|
height="500"></object>
|
|
</p>
|
|
</body>
|
|
</html>
|