xxxxxxxxxx
<html>
<body>
<h1>Readonly Attribute Example for the textarea Element</h1>
<label for="message">Leave a message</label>
<textarea
id="message"
name="message"
rows="6"
cols="60"
placeholder="This text area is read only."
readonly
></textarea>
</body>
</html>