mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
18 lines
502 B
HTML
18 lines
502 B
HTML
<!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">
|
|
<head>
|
|
<title>This is a XHTML sample file</title>
|
|
<style type="text/css"><![CDATA[
|
|
#example {
|
|
background-color: yellow;
|
|
}
|
|
]]></style>
|
|
</head>
|
|
<body>
|
|
<div id="example">
|
|
Just a simple <strong>XHTML</strong> test page.
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|