libropaganda/index2.html
2016-12-11 10:18:25 +01:00

22 lines
676 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en" ng-controller="AppCtrl" ng-app>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/controller.js"></script>
<title></title>
</head>
<body>
<div class="container">
<div class="page-header">
<h2> Chapter 1, <small>hello world</small></h2>
</div>
<div class="jumbotron">
<h1>Hello, {{name||'Word'}}</h1>
<label for="name">Enter your name</label>
<input type="text" ng-model="name" class="form-control input-lg" id="name">
</div>
</div>
</body>
</html>