Created
March 19, 2025 22:31
-
-
Save douglasabnovato/e61f93f18b9bb0908c3a85341abb0643 to your computer and use it in GitHub Desktop.
Estrutura inicial de html para lp de síndico
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Seu Nome - Síndico Profissional</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<header> | |
<h1>Seu Nome</h1> | |
<h2>Síndico Profissional</h2> | |
</header> | |
<section id="hero"> | |
<img src="foto-do-sindico.jpg" alt="Foto do Síndico"> | |
<div> | |
<h2>Soluções completas para o seu condomínio</h2> | |
<p>Texto conciso sobre os serviços oferecidos, destacando os benefícios para o cliente.</p> | |
<button>Entre em contato</button> | |
</div> | |
</section> | |
<section id="sobre"> | |
<h2>Sobre mim</h2> | |
<p>Apresentação mais detalhada do síndico, experiência e qualificações.</p> | |
</section> | |
<section id="servicos"> | |
<h2>Serviços</h2> | |
<ul> | |
<li>Gerenciamento financeiro</li> | |
<li>Manutenção predial</li> | |
<li>Atendimento aos condôminos</li> | |
</ul> | |
</section> | |
<footer> | |
<p>© Seu Nome - Todos os direitos reservados.</p> | |
<p>Contato: [email protected] | (XX) XXXX-XXXX</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment