If you have a lot of "copy - paste" to do maybe you could use PHP to generate the inputs instead. eg. something like
PHP Code:
$new_words = array('contact', 'about', 'pictures', 'songs', 'poems', 'stories');
foreach($new_words as $key => $value) {
echo "<input type=\"text\" name=\"example\" value=\"<a href=\"http://www.example.com/" . $value . ".htm\" target=\"_blank\"><img src=\"http://www.example.com/images/" . $value . ".gif\" alt=" . $value . " /></a>\" />";
}
BTW - does using an image link as an input value work?
Bookmarks