the input for question 1 (01.html) EXAM5 Makeup
THIS IS NOT A GRADED QUESTION, IT IS A REVIEW
the input for question 1 (01.html)
<!DOCTYPE html>
<html>
<head><title>EXAM5 Makeup</title>
<style type='text/css'>
form{color:navy;}
table{border:5px solid navy;background-color:yellow;}
th{color:yellow;background-color:navy;border:solid navy 2px;outline:solid navy 2px;border-}
input[type='text']{background-color:#DEDEE6;border:4px solid navy;}
input[type='button'],input[type='reset']{color:white;background-color:black;border:1px solid white;}
label{color:navy;font-weight: bold;}
</style>
</head>
<body>
<form>
<table>
<tr><th colspan="2">DOUBLE/TRIPPLE/QUADRUPLE SUM PROBLEM</th></tr>
<tr> <td><label>Enter Number1:</label></td><td> <input type="text" /> </td> </tr>
<tr> <td><label>Enter Number2:</label></td><td> <input type="text" /> </td> </tr>
<tr> <td><label>Enter Number3:</label></td><td> <input type="text" /> </td> </tr>
<tr> <td><label>Enter Number4:</label></td><td> <input type="text" /> </td> </tr>
<tr>
<td colspan="2" >
<center>
<input type="button" value="Answer" />
<input type="button" value="Clear" />
</center>
</td>
</tr>
</table>
</form>
</body>
</html>
the input for question 2 (0.2html)
<!DOCTYPE html>
<html>
<head><title>EXAM5 Makeup</title>
<style type='text/css'>
form{color:navy;}
table{border:5px solid navy;background-color:yellow;}
th{color:yellow;background-color:navy;border:solid navy 2px;outline:solid navy 2px;border-}
input[type='text']{background-color:#DEDEE6;border:4px solid navy;}
input[type='button'],input[type='reset']{color:white;background-color:black;border:1px solid white;}
label{color:navy;font-weight: bold;}
</style>
</head>
<body>
<form>
<table>
<tr><th colspan="2">DOUBLE/TRIPPLE/QUADRUPLE SUM PROBLEM</th></tr>
<tr> <td><label>Enter Number1:</label></td><td> <input type="text" /> </td> </tr>
<tr> <td><label>Enter Number2:</label></td><td> <input type="text" /> </td> </tr>
<tr> <td><label>Enter Number3:</label></td><td> <input type="text" /> </td> </tr>
<tr> <td><label>Enter Number4:</label></td><td> <input type="text" /> </td> </tr>
<tr>
<td colspan="2" >
<center>
<input type="button" value="Double" />
<input type="button" value="Tripple" />
<input type="button" value="Quadruple" />
<input type="button" value="All">
<input type="button" value="Clear" />
</center>
</td>
</tr>
</table>
</form>
</body>
</html>
Trending now
This is a popular solution!
Step by step
Solved in 2 steps