Angular
Appearance
Look up angular in Wiktionary, the free dictionary.
Angular may refer to:
Anatomy
- Angular artery, the terminal part of the facial artery
- Angular bone, a large bone in the lower jaw of amphibians and reptiles
- Angular incisure, a small anatomical notch on the stomach
- Angular gyrus, a region of the brain in the parietal lobe
- Angular vein, formed by the junction of the frontal vein and supraorbital vein
Other uses
- Angular (application platform), an open-source web application platform launched in 2016
- AngularJS, an open-source web application framework started in 2009
- Angle, having an angle or angles
- Angular Recording Corporation, a British independent record label
See also
Front end for web app
<html ng-app="myApp"> <head>
<title>BookStore</title> link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css"> link rel="stylesheet" href="css/style.css">
</head> <body> <nav class="navbar navbar-default">
</nav>
<script src="/bower_components/jquery/dist/jquery.js"></script> <script src="/bower_components/angular/angular.js"></script> <script src="/bower_components/angular-route/angular-route.js"></script> <script src="/bower_components/bootstrap/dist/js/bootstrap.js"></script> <script src="/app.js"></script> <script src="/controllers/books.js"></script> <script src="/controllers/genres.js"></script> </body> </html>