Skip to content

Instantly share code, notes, and snippets.

@i-oliveira
Created May 15, 2019 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save i-oliveira/4c74192d14952da750735f5a785eb91a to your computer and use it in GitHub Desktop.
Save i-oliveira/4c74192d14952da750735f5a785eb91a to your computer and use it in GitHub Desktop.
form folha de pagamento
<html>
<meta charset="UTF-8">
<head>
<title>Campo de Formulário</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div>
<center>
<h2 style="color:black;">FORMULÁRIO</h2>
<div id="form">
<form method="POST" action="respostas.php">
</br></br>Nome</br>
<input type="text" name="nome"/>
</br></br>Horas Trabalhadas</br>
<input type="text" name="horas"/>
</br></br>Valor da Hora</br>
<input type="text" name="valor"/>
</br></br>
<input type="submit">
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment