-
Notifications
You must be signed in to change notification settings - Fork 1
/
multlangs.html
28 lines (23 loc) · 1.08 KB
/
multlangs.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<p>This is a test in US English</p>
<p lang="es">This is a test in Spanish</p>
<div lang="fr" style="background-color:#99FFFF;">
<p>Hello - this is an undefined paragraph in a french div</p>
<p lang="en-US">This is in US English</p>
<p lang="en-GB">This is in UK English</p>
</div>
<form lang="es" name="form1" method="post" action="">
<input type="checkbox" id="foo"><label for="foo">I read en Espanol</label>
</form>
<p>German, with en lang identified.</p>
<p lang="en">Hallo wie geht es dir heute? Du sprichst so gut es ist eine Freude, Ihnen zuzuhören!</p>
<p>German, with DE lang identified.</p>
<p lang="de">Hallo wie geht es dir heute? Du sprichst so gut es ist eine Freude, Ihnen zuzuhören!</p>
</body>
</html>