Computer Science, asked by tenselog, 9 months ago

how to write html code for the following WEB SERVER option?

Attachments:

Answers

Answered by amangill1999ag
0

Answer:

By <select> and <option> tag

Its one of the solution

Explanation:

<!DOCTYPE html>

<html>

<body>

<label for="cars"> Web Server: </label>

<select id="servers">

 <option value="server 1">Server 1</option>

 <option value="server 2">Server 2</option>

 <option value="server 3">Server 3</option>

</select>

</body>

</html>

Similar questions