# Understanding templates In Angular, a template is a blueprint for a fragment of a user interface (UI). Templates are written in HTML, and special syntax can be used within a template to build on many of Angular's features. ## Prerequisites Before learning template syntax, you should be familiar with the following: * [Angular concepts](guide/architecture) * JavaScript * HTML * CSS ## Enhancing HTML Angular extends the HTML syntax in your templates with additional functionality. For example, Angular’s data binding syntax helps to set Document Object Model (DOM) properties dynamically. Almost all HTML syntax is valid template syntax. However, because an Angular template is only a fragment of the UI, it does not include elements such as ``, ``, or ``.
To eliminate the risk of script injection attacks, Angular does not support the `