Skip to content
d3vi0n edited this page Dec 28, 2013 · 2 revisions

Display a text in the right frame.
supports html and html forms
use span to display value of javascript variables.

    <Text>
      <p>My name is <span>myName</span></p>
      <p><u>underlined text</u></p>
      <p><em><b>bold and italic text</b></em></p>
      <p><font color="green">coloured text</font></p>
      <p><font size="+1" style="font-family:'Courier New', Courier, monospace">different font</font></p>
      <p><a href="http://google.com" target="_blank">google.com</a></p>
      <form>
          <p>Choose your sex:</p> 
          <input type="radio" name="sex" value="male" checked="checked"/>Male 
          <input type="radio" name="sex" value="female" />Female
	  <p>Choose your Toys:</p> 
          <input type="checkbox" name="dildo" checked="checked"/>Dildo 
          <input type="checkbox" name="whip" />Whip 
	  <p>Choose your Nickname:</p> 
          <input type="text" name="nickname" value="Toxic"/>
	  <p>Choose your Difficulty:</p>  
 	  <select name="difficulty">
              <option value="easy">Easy</option>
              <option value="normal">Normal</option>
              <option value="hard">Hard</option>
          </select>
      </form>
    </Text>