Html
Trabalho Universitário: Html. Pesquise 862.000+ trabalhos acadêmicosPor: camilo.oliveira • 5/3/2015 • 301 Palavras (2 Páginas) • 239 Visualizações
<DOCTYPE! html>
<html>
<head>
<meta charset= "utf-8"/>
<title>Trabalhando com formulários</title>
<link rel="stylesheet" href="form.css"/>
</head>
<body bgcolor="#E2EA76">
<h1 align="center">Testando formulários</h1>
<form method="post" id="fcontato" action="mailto:camilo-caetano@hotmail.com"
oninput="calcTotal () ;">
<fieldset id="usuario">
<legend>Identificação do Usuário</legend>
<p>Nome: <input type="text" name="tNome" id="cNome"
size="20" maxlength="30" placeholder="Nome Completo" /></p>
<p>Senha: <input type="text" name="tSenha" id="cSenha"
size="8" maxlength="8" placeholder="8 digitos" /></p>
<p>E-mail: <input type="email" name="tEmail" id="cMail"
size="30" maxlength="30" placeholder="E-mail valido"/></p>
<fieldset id="sexo"><legend>Sexo</legend>
<input type="radio" name="tsexo" id="cMasc" />
<label for="cMasc">Masculino</label><br>
<input type="radio" name="tsexo" id="cfemi" />
<label for="cfemi">Feminino</label>
</fieldset>
<p>Data de Nascimento: <input type="date"
name="tName" id="cName" /></p>
</fieldset>
<input type="submit" value="Enviar"/>
</form>
</body>
</html>
<DOCTYPE! html>
<html>
<head>
<meta charset= "utf-8"/>
<title>Trabalhando com formulários</title>
<link rel="stylesheet" href="form.css"/>
</head>
<body bgcolor="#E2EA76">
<h1 align="center">Testando formulários</h1>
<form method="post" id="fcontato" action="mailto:camilo-caetano@hotmail.com"
oninput="calcTotal () ;">
<fieldset id="usuario">
<legend>Identificação do Usuário</legend>
<p>Nome: <input type="text" name="tNome" id="cNome"
size="20" maxlength="30" placeholder="Nome Completo" /></p>
<p>Senha: <input type="text" name="tSenha" id="cSenha"
size="8" maxlength="8" placeholder="8 digitos" /></p>
<p>E-mail: <input type="email" name="tEmail" id="cMail"
size="30" maxlength="30" placeholder="E-mail valido"/></p>
<fieldset id="sexo"><legend>Sexo</legend>
<input type="radio" name="tsexo" id="cMasc" />
<label for="cMasc">Masculino</label><br>
<input type="radio" name="tsexo" id="cfemi" />
<label for="cfemi">Feminino</label>
</fieldset>
<p>Data de Nascimento: <input type="date"
name="tName" id="cName" /></p>
</fieldset>
<input type="submit" value="Enviar"/>
</form>
</body>
</html>
<DOCTYPE! html>
<html>
<head>
<meta charset= "utf-8"/>
<title>Trabalhando com formulários</title>
<link rel="stylesheet" href="form.css"/>
</head>
<body bgcolor="#E2EA76">
<h1 align="center">Testando formulários</h1>
<form method="post" id="fcontato" action="mailto:camilo-caetano@hotmail.com"
oninput="calcTotal
...