Skip to content

Instantly share code, notes, and snippets.

@nunomazer
Last active August 19, 2018 22:30
Show Gist options
  • Save nunomazer/097723986d9e4cee9469894e11001ecb to your computer and use it in GitHub Desktop.
Save nunomazer/097723986d9e4cee9469894e11001ecb to your computer and use it in GitHub Desktop.
Primeira página HTML, Livro Desenvolvimento Web com Java
<html>
<head>
<title>Contato com Minha Empresa.com</title>
<meta author="Ademir Mazedr Junior" />
<meta description="Página HTML de exemplo com formulário" />
</head>
<body>
<h1>Minha Empresa.com</h1>
<hr />
<section>
<h2>
Contatos:
</h2>
<ul>
<li>Telefone: (99) 9999-9999</li>
<li>E-mail: <a href="mailto:[email protected]">[email protected]</a></li>
<li>
<address>
Endereço: Rua dos Alfineiros, 4 - Surrey, Londres
</address>
</li>
</ul>
</section>
<form action="/pagina-processa-dados-do-form" method="post">
<div>
<label for="nome">Nome:</label>
<input type="text" id="nome" name="usuario_nome" />
</div>
<div>
<label for="email">E-mail:</label>
<input type="email" id="email" name="usuario_email" />
</div>
<div>
<label for="msg">Mensagem:</label>
<textarea id="msg" name="usuario_msg"></textarea>
</div>
<div class="button">
<input type="submit" />
</div>
</form>
</body>
</html>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment