Skip to content

Instantly share code, notes, and snippets.

@rssilva
Last active December 12, 2015 01:59
Show Gist options
  • Save rssilva/4695427 to your computer and use it in GitHub Desktop.
Save rssilva/4695427 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/jquery-1.9.0.js"></script>
<script type="text/javascript" src="js/Form.js"></script>
</head>
<body>
<!-- Poderíamos usar a tag form aqui, no entanto,
para fins de estudo, vamos usar uma div
-->
<div>
<div id="main-form" method="">
<div class="line">
<label>Nome de usuário:</label>
<input type="text" name="username">
</div>
<div class="line">
<label>Email: </label>
<input type="text" name="email">
</div>
<div class="line">
<label>&nbsp;</label>
<button id="send-button">Envia!</button>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment