Somente chame o arquivo angular no seu arquivo. Algo assim:
<html>
<head>
<title>AngularJS</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js"></script>
</head>
<body ng-app>
<form name="">
<table>
<tr>
<th>Nome</th>
</tr>
<tr>
<td>
<input type="text" name="nome" ng-model="nome">
</td>
</tr>
</table>
</form>
<p>{{ nome }}</p>
</body>
</html>