mate-counter/index.html
2018-10-06 04:03:09 +09:30

24 lines
803 B
HTML

<!DOCTYPE html>
<html lang="en" ng-app="app">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Thomotron">
<meta name="keywords" content="mate,counter,loky244">
<title>Mate Counter</title>
<link rel="stylesheet" href="stylesheets/default.css">
<script src="scripts/angular.min.js" type="application/javascript"></script>
<script src="scripts/app.js" type="application/javascript"></script>
</head>
<body>
<div class="container" ng-controller="mates">
<div class="above">Loky has</div>
<div class="count" ng-click="countClick()">{{mates}}</div>
<div class="below">mates</div>
</div>
</body>
</html>