Practical 10

PHOTO EMBED

Sat Mar 07 2026 11:48:53 GMT+0000 (Coordinated Universal Time)

Saved by @Manasi123 #html

<!DOCTYPE html>

<html ng-app>

<head>

  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.3/angular.min.js"></script>

  <title>Input Table</title>

</head>

<body>

<h2>Enter Student Info</h2>

Name: <input ng-model="student.name" placeholder="Name">

Age: <input type="number" ng-model="student.age" placeholder="Age"><br><br>

<table border="1">

  <tr>

    <th>Name</th>

    <th>Age</th>

  </tr>

  <tr>

    <td>{{student.name}}</td>

    <td>{{student.age}}</td>

  </tr>

</table>

</body>

</html>
content_copyCOPY