AngularJS Tutorial


AngularJS Tutorial


XML stands for Extensible Markup Language and is a text-based markup language derived from Standard Generalized Markup Language (SGML).

This tutorial will teach you basics of XML. The tutorial is divided into sections such as XML Basics, Advanced XML and XML tools. Each of these sections contain related topics with simple and useful examples.

Audience

This reference has been prepared for the beginners to help them to understand the basic to advanced concepts related to XML. This tutorial will give you enough understanding on XML from where you can take yourself to a higher level of expertise.

Prerequisites

Before proceeding with this tutorial you should have basic knowledge of HTML and Javascript.

Execute AngularJS Online

For most of the examples given in this tutorial, you will find Try it option to execute AngularJS scripts online, so just make use of it and enjoy your learning.

Try the following example using Try it option available at the top right corner of the below sample code box:

<!doctype html>
<html ng-app>
  <head>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.17/angular.min.js"></script>
  </head>
  <body>
    <div>
      <label>Name:</label>
      <input type="text" ng-model="yourName" placeholder="Enter a name here">
      <hr>
      <h1>Hello {{yourName}}!</h1>
    </div>
  </body>
</html>