HTML Guide for non empty
Drop-down lists can be defined in HTML by using the <select> tag, containing the different <option>s. Each <option> must have a name, which can be either contained between <option> and </option>, or alternatively using the label attribute.
Example:
<select name="size">
<option value="s">small</option>
<option value="m" label="medium"></option>
</select>
The <title> element, used to define the document’s title, is required and must not be empty.
Example:
<html>
<head>
<title>Automated Website Validator</title>
</head>
<body>
<p>...</p>
</body>
</html>