You are on page 1of 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sua Empresa - Transformando Sonhos em Realidade</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}

.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}

h1, h2 {
color: #3498db;
}

p {
line-height: 1.6;
}

input {
width: 100%;
padding: 10px;
margin-bottom: 20px;
box-sizing: border-box;
}

button {
background-color: #3498db;
color: #fff;
border: none;
padding: 15px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 3px;
}

button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>

<div class="container">
<h1>Sua Empresa</h1>
<h2>Transformando Sonhos em Realidade</h2>
<p>Descubra como podemos ajudar você a alcançar seus objetivos. Preencha o
formulário abaixo para receber mais informações.</p>

<form action="processar_formulario.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>

<button type="submit">Receber Informações</button>


</form>
</div>

</body>
</html>

You might also like