<
html
>
<
head
>
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"themes/metro/easyui.css"
>
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"themes/mobile.css"
>
<
link
rel
=
"stylesheet"
type
=
"text/css"
href
=
"themes/icon.css"
>
<
script
type
=
"text/javascript"
src
=
"jquery.min.js"
>
</
script
>
<
script
type
=
"text/javascript"
src
=
"jquery.easyui.min.js"
>
</
script
>
<
script
type
=
"text/javascript"
src
=
"jquery.easyui.mobile.js"
>
</
script
>
</
head
>
<
body
>
<
h1
>GeeksforGeeks</
h1
>
<
h3
>EasyUI jQuery checkbox widget</
h3
>
<
form
id
=
"gfg"
>
<
div
style
=
"margin-bottom:10px"
>
<
input
class
=
"easyui-checkbox"
name
=
"language"
value
=
"HTML"
label
=
"1st:"
>
</
div
>
<
div
style
=
"margin-bottom:10px"
>
<
input
class
=
"easyui-checkbox"
name
=
"language"
value
=
"JavaScript"
label
=
"2nd:"
>
</
div
>
<
div
style
=
"margin-bottom:10px"
>
<
input
class
=
"easyui-checkbox"
name
=
"language"
value
=
"jQuery"
label
=
"3rd:"
>
</
div
>
</
form
>
</
body
>
</
html
>