# InputBox
Open me!
Demo View | Source Code (opens new window) | Download all widgets
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>InputBox</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../core/lib/jquery-1.6.2.min.js"></script>
</head>
<body>
<h1>InputBox</h1>
<div class="content">
<form id="lines" >
<input id="line-1" name="line-1" type="text" class="textbox" title="Some Text"/></br>
</form>
</div>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.textbox {
background: url("../core/images/textbox.png") no-repeat;
width: 280px;
height: 32px;
line-height: 32px;
font-size: 14px;
font-family: Arial;
overflow: hidden;
border: 0;
padding-left: 5px;
padding-right: 5px;
}
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
// Make sure to add code blocks to your code group