-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
25 lines (25 loc) · 959 Bytes
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
<title>spinbox MVC</title>
</head>
<body>
<h1 id = "h">Spinbox</h1>
<form>
<div class ="form">
<input type = "text" class = "form-control result">
<button type = "button" class ="btn-increase">+</button>
<button type = "button" class ="btn-decrease">-</button>
</div>
</form>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<script src="./spinbox/controller.js"></script>
<script src="./spinbox/model.js"></script>
<script src="./spinbox/view.js"></script>
<script src = "app.js"></script>
</body>
</html>