Changes

342 bytes removed ,  10:10, 8 June 2022
no edit summary
Line 1: Line 1: −
<!DOCTYPE html>
+
[[FR:L'infocentre de l'infonuagique]]
<html>
+
<multilang>
<body>
+
@en|__NOTOC__
   −
<h1>The select element</h1>
+
<!-- NAV -->
   −
<p>The select element is used to create a drop-down list.</p>
+
{| class="FCK__ShowTableBorders" style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px; background-color: #392F41" width="80%" align="center"
 
+
|-
<form action="/action_page.php">
  −
  <label for="cars">Choose a car:</label>
  −
  <select name="cars" id="cars">
  −
    <option value="volvo">Volvo</option>
  −
    <option value="saab">Saab</option>
  −
    <option value="opel">Opel</option>
  −
    <option value="audi">Audi</option>
  −
  </select>
  −
  <br><br>
  −
  <input type="submit" value="Submit">
  −
</form>
  −
 
  −
<p>Click the "Submit" button and the form-data will be sent to a page on the
  −
server called "action_page.php".</p>
  −
 
  −
</body>
  −
</html>