Google Answers Logo
View Question
 
Q: Web page design HTML ( No Answer,   2 Comments )
Question  
Subject: Web page design HTML
Category: Computers > Internet
Asked by: theinqusitor0-ga
List Price: $5.00
Posted: 09 Aug 2006 18:38 PDT
Expires: 10 Aug 2006 18:22 PDT
Question ID: 754495
What is the best method or approach to designing a web page around a
central text box; around which having "wells" of buttons that will
each automatically add defined text to the text box (at the cursor)
which corresponds to the button clicked upon?
Answer  
There is no answer at this time.

Comments  
Subject: Re: Web page design HTML
From: sumhat-ga on 10 Aug 2006 06:07 PDT
 
do you mean a page like this?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title></title>
</head>

<body>
<table width="200" border="1">
  <tr>
    <td><div align="center">
      <input type="button" name="Submit" value="Button A" onclick="v.value='A'"/>
    </div></td>
    <td><div align="center">
      <input type="button" name="Submit2" value="Button B" onclick="v.value='B'"/>
    </div></td>
    <td><div align="center">
      <input type="button" name="Submit3" value="Button C" onclick="v.value='C'"/>
    </div></td>
  </tr>
  <tr>
    <td><div align="center">
      <input type="button" name="Submit4" value="Button D" onclick="v.value='D'" />
    </div></td>
    <td><div align="center">
      <input name="v" type="text" id="v" size="6" />
    </div></td>
    <td><div align="center">
      <input type="button" name="Submit5" value="Button H" onclick="v.value='H'"/>
    </div></td>
  </tr>
  <tr>
    <td><div align="center">
      <input type="button" name="Submit6" value="Button E" onclick="v.value='E'" />
    </div></td>
    <td><div align="center">
      <input type="button" name="Submit7" value="Button F" onclick="v.value='F'" />
    </div></td>
    <td><div align="center">
      <input type="button" name="Submit8" value="Button G" onclick="v.value='G'"/>
    </div></td>
  </tr>
</table>
</body>
</html>
Subject: Re: Web page design HTML
From: theinqusitor0-ga on 10 Aug 2006 18:20 PDT
 
Thats great I didnt know tables could do that. Thank YOU very much.

Important Disclaimer: Answers and comments provided on Google Answers are general information, and are not intended to substitute for informed professional medical, psychiatric, psychological, tax, legal, investment, accounting, or other professional advice. Google does not endorse, and expressly disclaims liability for any product, manufacturer, distributor, service or service provider mentioned or any opinion expressed in answers or comments. Please read carefully the Google Answers Terms of Service.

If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you.
Search Google Answers for
Google Answers  


Google Home - Answers FAQ - Terms of Service - Privacy Policy