<!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>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter