TextBox Example (simple)

Example

VML

Code

<!-- Include the VML behavior -->
<style>v\: * { behavior: url(#default#VML);display:inline-block }</style>

<!-- Declare the VML namespace -->
<xml:namespace ns="urn:schemas-microsoft-com:vml" prefix="v"/>

<v:oval strokecolor="red" fillcolor="yellow"
  style="position:relative;top:30px;left:50px;width:75px;height:50px;">
  <v:textbox id="mytext">
    <b>VML</b>
  </v:textbox>
</v:oval>