HTML and Arduino?

Hi all,

One quick question: I'm and trying to group buttons vertically on a web page through Arduino but it's just displaying them horizontally. Is there something wrong with the code or could there be a compatibility issue?

Thanks.

client.println("

");
client.println("
");
client.println("

North Elements

");
client.println(" OFF ");
client.println(" 2.50V");
client.println(" 5.00V");
client.println("
");
client.println("
");

An HTML tutorial and
might be what you need. Something like below.

       client.println("<button type='button' class='btn btn-default'> OFF  </button>
");
       client.println("<button type='button' class='btn btn-default'> 2.50V</button>
");
       client.println("<button type='button' class='btn btn-default'> 5.00V</button>
");