AngularJS form is a collection of input controls.

AngularJS forms syntax

The following HTML input elements are called HTML controls:

input element

select element

button element

textarea element

AngularJS forms example

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/angular.js/1.4.6/angular.min.js"></script>
</head>
<body>

<div ng-app="myApp" ng-controller="formCtrl">
  <form>
    First Name: <input type="text" ng-model="firstname">
  </form>
</div>

<script>
var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
    $scope.firstname = "John";
});
</script>

</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance