formations/javascript/angular/exercices/routage/.solution/index.html

28 lines
595 B
HTML

<html>
<head>
<meta charset="utf8">
<title>Exercice ngRoute</title>
<style>
body {
font-family: 'serif'
}
a[ng-click*=goTo] {
text-decoration: underline;
cursor: pointer;
color: blue;
}
</style>
</head>
<!-- Déclaration de l'application -->
<body ng-app="Exo">
<h1>La montagne de feu</h1>
<ng-view></ng-view>
<!-- Import de du framework Angular -->
<script src="../../node_modules/angular/angular.js"></script>
<script src="../../node_modules/angular-route/angular-route.js"></script>
<script src="app.js"></script>
</body>
</html>