-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
23 lines (23 loc) · 875 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="number_plugin/number_plugin.min.js" type="text/javascript"></script>
<link href="number_plugin/number_plugin.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" href="style.css" type="text/css">
<script src="app.js" type="text/javascript"></script>
</head>
<body>
<div class="wrapper">
<div>
<input type="number" class="numb" id="1" value="1">
<input type="number" class="numb" id="2" value="1">
</div>
</div>
</body>
</html>