empno and marks html tables

Sure! Here's an example of how you can create an HTML table using BASIC code to display employee numbers (empno) and their corresponding marks:

<!DOCTYPE html>
<html>
<head>
  <title>Employee Marks</title>
</head>
<body>
<table>
  <tr>
    <th>Employee Number</th>
    <th>Marks</th>
  </tr>

  <!-- Here, you can replace the dummy data with your actual employee numbers and marks -->
  <tr>
    <td>101</td>
    <td>85</td>
  </tr>
  <tr>
    <td>102</td>
    <td>92</td>
  </tr>
  <tr>
    <td>103</td>
    <td>78</td>
  </tr>
</table>
</body>
</html>

In the above code snippet, we start by defining the basic structure of an HTML document using the <!DOCTYPE html> declaration. Inside the <body> tag, we create a <table> element to hold our data.

We then define the table headers using the <th> tags within a <tr> element. In this example, we have two headers: "Employee Number" and "Marks".

Next, we populate the table with data. Each row is represented by a <tr> element, and each cell within a row is represented by a <td> element. In the example, we have provided dummy data for three employees, but you can replace this with your actual data.

Finally, we close the table, body, and HTML tags to complete the document structure.

By saving this code in a file with a .html extension and opening it in a web browser, you will see a table displaying the employee numbers and their corresponding marks.