Input box specification

A

Amateur

Dear Sirs,
I have a form "method" where the client has to input some details. One line
of the code looks like this:
<td valign="top" width="67" height="24"><div style="padding-left:0px;
padding-top:0px "><input name="country" type="text" style="width:67;
height:25 "></div>
</td>
I would like that the details which the client has to put in has the
following specification: font face="Tahoma" size="1" ; "red"
How can I do this?
Thanks
Klaus
 
M

MD Websunlimited

Hi,

Use CSS to specify the presentation.

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
<style>
..name {
font-size: 10px;
font-face: Tacoma;
color: red;
}
</style>
</head>

<body>
<input class="name" type="text" value="Enter name" >
</body>

</html>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top