Create the table using html.
Note :- use the check box for selecting number.
don't spam ❌
⭐need quality answer ⭐
Answers
Following còdes are written in HTML and CSS
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<style>
p {
font-size: 23px;
}
#numbers {
padding-left: 37px;
}
#outer {
border: 1px solid black;
padding: 16px;
width: 285px;
margin-left: 10px;
}
tr,
td,
table {
margin: auto;
padding: 20px;
border: 1px solid black;
border-collapse: collapse;
width: 269px;
text-align: center;
}
</style>
</head>
<body>
<div id="outer">
<table>
<tr>
<td>2</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
</table>
<div id="numbers">
<p>Select your number :-</p>
<form action="/action_page.php">
<input type="checkbox">
<label>2     </label>
<input type="checkbox">
<label>5     </label>
<input type="checkbox">
<label>7     </label> <br>
<input type="checkbox">
<label>4     </label>
<input type="checkbox">
<label>6     </label>
<input type="checkbox">
<label>8     </label>
</form>
</div>
</div>
</body>
</html>
Output attached...★