Textarea value not showing up?

I can’t figure out why my textarea in the screenshot is showing up (Attachment)
Here is the source code


<p><label>Who Are You:</label><textarea name="Who" value="<div style=&quot;text-align: center; font-weight: bold;&quot;>rrrrrrrrrrrrrrrrrrrrrr</div>" rows="10" cols="60"></textarea></p>

Any help, thanks…

The textarea element doesn’t have a value attribute, instead put the contents between the opening and close tags:

<textarea>Contents here</textarea>

ok, im a retard, thanks