Which form is coded correctly?
<form> <legend>Title</legend> <label for="name">Your name:</label> <input type="text" name="name" id="name" /> <input type="submit" value="Submit" /> </form>
<form> <fieldset> <legend>Title</legend> <label for="name">Your name:</label> <input type="text" name="name" id="name" /> <button type="submit">Submit</button> </fieldset> </form>
<form> <fieldset> <legend>Title</legend> <p>Your name:</p> <input type="text" name="name" id="name" /> <input type="submit" value="Submit" /> </fieldset> </form>
<form> <legend>Title</legend> <fieldset> <label for="name">Your name:</label> <input type="text" name="name" id="name" /> <button type="submit">Submit</button> </fieldset> </form>