How do I make something like this in HTML: I want it so that when I click inside the box, everything automatically gets copied as such. Thanks
try this <form name="copy"> <div align="center"> <input type="button" value="Highlight All" onclick="javascript:this.form.txt.focus();this.form.txt.select();"><BR> After clicking the "Highlight All" button, hold the "CTRL" key on your keyboard and press "C".<BR> To insert the link code to your website's index page source code, hold the "CTRL" key and press "V". </div> <textarea name="txt" rows="2" cols="70" wrap="VIRTUAL"> <b>your codings here</b> </textarea></form>