Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <p>Which fruit would you like for lunch?</p> <form> <input type="radio" name="fruit" value="banana" id="banana"> <label for="banana">Banana</label> <input type="radio" name="fruit" value="none" id="none"> <label for="none">None</label> </form>