“`html <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Agendamento de Consultas</title> <style> body { font-family: Arial, sans-serif; margin: 20px; } h1 { color: #333; } form { max-width: 400px; margin: auto; } label { display: block; margin-bottom: 8px; } input, select { width: 100%; padding: 10px; margin-bottom: 15px; box-sizing: border-box; } button { background-color: #4CAF50; color: white; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; } </style> </head> <body> <h1>Agendamento de Consultas</h1> <form action=”seu-script-de-processamento.php” method=”post”> <label for=”nome”>Nome:</label> <input type=”text” id=”nome” name=”nome” required> <label for=”email”>E-mail:</label> <input type=”email” id=”email” name=”email” required> <label for=”telefone”>Telefone:</label> <input type=”tel” id=”telefone” name=”telefone” required> <label for=”data”>Data da Consulta:</label> <input type=”date” id=”data” name=”data” required> <label for=”hora”>Hora da Consulta:</label> <input type=”time” id=”hora” name=”hora” required> <button type=”submit”>Agendar Consulta</button> </form> </body> </html> “`