1 <input type="radio" id="huey" name="drone" value="huey"
2 checked>
3<!-- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio-->
1<form>
2 <p>Veuillez choisir la meilleure méthode pour vous contacter :</p>
3 <div>
4 <input type="radio" id="contactChoice1"
5 name="contact" value="email">
6 <label for="contactChoice1">Email</label>
7
8 <input type="radio" id="contactChoice2"
9 name="contact" value="telephone">
10 <label for="contactChoice2">Téléphone</label>
11
12 <input type="radio" id="contactChoice3"
13 name="contact" value="courrier">
14 <label for="contactChoice3">Courrier</label>
15 </div>
16 <div>
17 <button type="submit">Envoyer</button>
18 </div>
19</form>