“Structure Radio en HTML” Réponses codées

Radio d'entrée HTML

<form>
  <p>Veuillez choisir la meilleure méthode pour vous contacter :</p>
  <div>
    <input type="radio" id="contactChoice1"
     name="contact" value="email">
    <label for="contactChoice1">Email</label>

    <input type="radio" id="contactChoice2"
     name="contact" value="telephone">
    <label for="contactChoice2">Téléphone</label>

    <input type="radio" id="contactChoice3"
     name="contact" value="courrier">
    <label for="contactChoice3">Courrier</label>
  </div>
  <div>
    <button type="submit">Envoyer</button>
  </div>
</form>
Nice Nightingale

Entrée radio HTML

<label> 
  <input type="radio" name="indoor-outdoor">Indoor 
</label>
Favour Ikechukwu uwadiegwu

Structure Radio en HTML

<div class="mb-3"><label class="form-label">Sex:</label>
  <input type="radio" id="contactChoice1"name="contact" value="email">
  <label for="contactChoice1">Email</label>

  <input type="radio" id="contactChoice2"name="contact" value="telephone">
  <label for="contactChoice2">Téléphone</label>

  <input type="radio" id="contactChoice3"name="contact" value="courrier">
  <label for="contactChoice3">Courrier</label>    
</div>
Magsverge Solutions

Réponses similaires à “Structure Radio en HTML”

Questions similaires à “Structure Radio en HTML”

Plus de réponses similaires à “Structure Radio en HTML” dans HTML

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code