forked from tito433/Bootstrap-icon-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (27 loc) · 970 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
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<link href="css/bootstrap.min.css" media="all" rel="stylesheet" type="text/css" />
<link href="css/icon-picker.min.css" media="all" rel="stylesheet" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/iconPicker.min.js"></script>
<script type="text/javascript">
$(function () {
$(".icon-picker").iconPicker();
});
</script>
<style type="text/css">
#wraper{position:absolute;width:400px; left:50%;margin-left: -200px;top:100px;}
input{padding-bottom: 30px;}
</style>
</head>
<body>
<div id="wraper">
<form method="post">
<input type="text" name="someName" class="icon-picker" />
<input type="text" name="someName2" class="icon-picker" />
<input type="text" name="someName3" class="icon-picker" />
</form>
</div> <!-- wraper -->
</body>
</html>