Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Step 4: Calculator Project

How do I add an input field... what goes in the style field I'm confused? Please help!!! Thanks!!
<!DOCTYPE html>
<html>
<head><title>HTML Calculator Layout</title></head>
<body>
<table border="1px" width="75%">
<tr height="50px">
<td></td>
</tr>
<input type="text"; style=""; width="95%"; height="50px"/>
</table>
</body>
</html>
by

1 Answer

Ashutoshry6u3
try this
<!DOCTYPE html>
<html>
<head>
<title> Calculator </title>
</head>
<body>
<table border="1px" width="75%"></table>
<tr height="50px">
<td><input type="text" style="width:95%;height:50px"/></td>
</tr>

</body>
</html>

Login / Signup to Answer the Question.