Table

 <!DOCTYPE html><html lang="en">

<head><title>Student Marks Table</title>


</head>

<body><h2>Student Marks Table</h2>


<table>

    <tr>

        <th>Student ID</th>

        <th>Name</th>

        <th>Math</th>

        <th>Science</th>

        <th>English</th>

        <th>Total Marks</th>

    </tr>

    <tr>

        <td>101</td>

        <td>Alice</td>

        <td>85</td>

        <td>90</td>

        <td>88</td>

        <td>263</td>

    </tr>

    <tr>

        <td>102</td>

        <td>Bob</td>

        <td>78</td>

        <td>82</td>

        <td>80</td>

        <td>240</td>

    </tr>

    <tr>

        <td>103</td>

        <td>Charlie</td>

        <td>92</td>

        <td>87</td>

        <td>89</td>

        <td>268</td>

    </tr>

    <tr>

        <td>104</td>

        <td>David</td>

        <td>74</td>

        <td>70</td>

        <td>72</td>

        <td>216</td>

    </tr>

</table>


</body>

<html>

Comments

Popular posts from this blog

Calculate Factorial using While loop in JavaScript.

Calculator

Simple calculator