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

29 lines
583 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>
<!-- ??? -->
<!-- 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>