24 lines
902 B
HTML
Executable File
24 lines
902 B
HTML
Executable File
<!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" lang="en">
|
|
<head>
|
|
<title>Xinha Newbie Guide</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<script type="text/javascript">
|
|
_editor_url = "../" // (preferably absolute) URL (including trailing slash) where Xinha is installed
|
|
_editor_lang = "en"; // And the language we need to use in the editor.
|
|
_editor_skin = "silva"; // If you want use skin, add the name here
|
|
</script>
|
|
<script type="text/javascript" src="../XinhaLoader.js"></script>
|
|
<script type="text/javascript" src="XinhaConfig.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<form action="">
|
|
<div>
|
|
<textarea id="myTextArea" name="myTextArea" rows="25" cols="50" style="width: 100%"></textarea>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |