quoad
Version:
Serenity/JS: Next generation acceptance testing library for modern web applications.
29 lines (28 loc) • 877 B
HTML
<html lang="en">
<body>
<form>
<fieldset name='options'>
<legend>Working with options</legend>
<label for='multi-option-select'>
Country
<select multiple id='multi-option-select'>
<option value='UK'>United Kingdom</option>
<option value='PL'>Poland</option>
<option value='DE'>Germany</option>
<option value='FR'>France</option>
</select>
</label>
</fieldset>
</form>
<ul id='country-of-interest-codes'>
<li>PL</li>
<li>UK</li>
</ul>
<ul id='country-of-interest-names'>
<li>Poland</li>
<li>United Kingdom</li>
</ul>
<p id='another-country-of-interest-code'>DE</p>
<p id='another-country-of-interest-name'>Germany</p>
</body>
</html>