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

Step 5 of html calculator layout

Where to write the colspan attribute? I wrote in the first row where it should be, but it's still not getting submitted. What should I do? Can anyone share the code?
by

1 Answer

kshitijrana14
Try this one:

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

Login / Signup to Answer the Question.