The options in the drop-down box support how and and or queries are designed

A drop-down box supports multiple selections, supporting both and and or queries

brand = "Volvo" and brand = "Saab" 
brand = "Volvo" or brand = "Saab"
Is there any good way to display the

page? Is it like this down there?

<html>
<body>
brand:
<select multiple="multiple">
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select>

<select>
  <option value="and">and</option>
  <option value="or">or</option>
</select>
</body>
</html>
Mar.29,2021
Menu