Reputation: 317
I wrote the following code in html
<form>
<textarea class="heighttext" type="text"/>
<input type="checkbox" name="your-group" value="unit-in-group" />Unit-in-group
</form>
But the problem is that when I run the application it just shows text "Unit-in-group" and the checkbox is invisible. Can anyone tell me what is the problem.
Upvotes: 1
Views: 187
Reputation: 1515
The code should be
<form>
<textarea class="heighttext" type="text"></textarea>
<input type="checkbox" name="your-group" value="unit-in-group">Unit-in-group
</form>
Upvotes: 2