// Enviamos al cliente una respuesta HTTP
client.println(F("HTTP/1.1 200 OK"));
client.println(F("Content-Type: text/html"));
client.println();
//Página web en formato HTML
client.println(F("<html>"));
client.println(F("<head>"));
client.println(F("</head>"));
client.println(F("<body>"));
// and the rest the same...