Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,10 @@ <h1>Forms</h1>
<div>
<label>Radio Buttons</label>
<ul>
<li><label><input type="radio" /> Label 1</label></li>
<li><label><input type="radio" /> Label 2</label></li>
<li><label><input type="radio" /> Label 3</label></li>
<!-- All radio buttons have the same name attribute to ensure they are part of the same group -->
<li><label><input type="radio" name="group1" /> Label 1</label></li>
<li><label><input type="radio" name="group1" /> Label 2</label></li>
<li><label><input type="radio" name="group1" /> Label 3</label></li>
</ul>
</div>

Expand Down