Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Curriculo começo. #84

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Atividade2-2/Tt_tabelas_transicao.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions Atividade2-2/formulario.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Cadastro de Cliente</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" href="tabelas1.css">
<link rel="stylesheet" href="tabelas2.css">
</head>
<body>
<div class="tabelaGC">
<table>
<tr>
<td class="coluna1"> </td>
<td class="coluna2">Cadastro do Cliente</td>
<td class="coluna3">&nbsp;</td>
</tr>
</table>

<form action="processaForm" method="post">
<fieldset>
<legend>Dados do cliente </legend>
<table>
<tr>
<td ><label> Nome:</label></td>
<td colspan="3"><input name="nome" type="text" size="79" maxlength="255"></td>
</tr>
<tr>
<td ><label> Telefone:</label></td>
<td ><input name="telefone" type="text" ></td>
<td ><label>e-mail:</label></td>
<td ><input name="email" type="text" size="40"></td>
</tr>
</table>
</fieldset>
<fieldset>
<legend>Endere&ccedil;o</legend>
<table >
<tr>
<td ><label>Rua/Av:</label></td>
<td><input name="endereco" type="text" size="40" maxlength="255"></td>
<td ><label>N&uacute;mero:&nbsp;</label></td>
<td ><input name="numero" type="text" size="5" maxlength="5"></td>
</tr>
<tr>
<td ><label>Bairro:</label></td>
<td ><input name="bairro" type="text"></td>
<td ><label>CEP:&nbsp;</label></td>
<td><input name="cep" type="text" ></td>
</tr>
<tr>
<td ><label> Cidade:</label></td>
<td ><input name="cidade" type="text" ></td>
<td >&nbsp;</td>
<td >&nbsp;</td>
</tr>
</table>
</fieldset>
</form>
</div>
</body>
</html>
Binary file added Atividade2-2/tabela_fundoJF_direito.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Atividade2-2/tabela_fundoJF_esquerdo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Atividade2-2/tabela_fundoJF_transicao.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Atividade2-2/tabela_fundo_direito.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Atividade2-2/tabela_fundo_esquerdo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Atividade2-2/tabela_fundo_transicao.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
92 changes: 92 additions & 0 deletions Atividade2-2/tabelas1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
/*************** Configura��o do Cabe�alho **************/
div.tabelaGC td {
/*Essencial para nao ficar um espao entre a clula e a borda*/
margin: 0px;
padding: 0px;
}

div.tabelaGC table td.coluna1 {
width: 16px;
background-image: url("tabela_fundo_esquerdo.gif");
background-repeat: no-repeat;
background-position: left;
height: 32px;
}

div.tabelaGC table td.coluna2 {
background-image: url(tabela_fundo_transicao.gif);
background-repeat: repeat-x;
height: 32px;
}

div.tabelaGC table td.coluna3 {
background-image: url("tabela_fundo_direito.gif");
background-repeat: no-repeat;
background-position: right;
height: 32px;
width: 60px;
}


div.tabelaGC {
border:0pt solid #EEEEEE;
width:100%;
/*Essencial para nao ficar um espao entre a clula e a borda
Se for igual a separate pode-se definir border-spacing*/
border-collapse: collapse;
}

div.tabelaGC table {

/* Essencial para nao ficar espaos entre as clulas no IE*/
border-collapse: collapse;

/* Configuraao do texto */
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8EM;
font-weight: bold;
color: white;
text-align: left;
text-indent: 6pt;
width:100%;

}


div.tabelaGC form table {
width:0%;
}

/*************** Configura��es do formul�rio ************/

div.tabelaGC form table td{

/* Para definir o espa�amento entre as c�lulas */
padding:4px;
}

fieldset {
border: 0pt;
}

div.tabelaGC fieldset legend{
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8em;
font-weight: bold;
color: #656297;
text-align: left;
padding: 0px;
margin: 0px;
}

div.tabelaGC input,
div.tabelaGC label,
div.tabelaGC select{
font-size: 0.9EM;
font-family: Arial, Helvetica, sans-serif;
color: #858495;
font-weight: bold;
vertical-align: top;
margin-left: 15px;
}

89 changes: 89 additions & 0 deletions Atividade2-2/tabelas2.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
/*************** Configura��o do Cabe�alho **************/
div.tabelaGC td {
/*Essencial para nao ficar um espao entre a clula e a borda*/
margin: 0px;
padding: 0px;
}

div.tabelaGC table td.coluna1 {
width: 16px;
background-image: url("tabela_fundoJF_esquerdo.gif");
background-repeat: no-repeat;
background-position: left;
height: 32px;
}

div.tabelaGC table td.coluna2 {
background-image: url(tabela_fundoJF_transicao.gif);
background-repeat: repeat-x;
height: 32px;
}

div.tabelaGC table td.coluna3 {
background-image: url("tabela_fundoJF_direito.gif");
background-repeat: no-repeat;
background-position: right;
height: 32px;
width: 60px;
}

div.tabelaGC {
border:0pt solid #EEEEEE;
width:100%;
/*Essencial para nao ficar um espao entre a clula e a borda
Se for igual a separate pode-se definir border-spacing*/
border-collapse: collapse;
}

div.tabelaGC table {

/* Essencial para nao ficar espaos entre as clulas no IE*/
border-collapse: collapse;

/* Configuraao do texto */
font-family: Arial, Helvetica, sans-serif;
font-size: 1.1EM;
font-weight: bold;
color: white;
text-align: left;
text-indent: 6pt;
width:100%;

}


div.tabelaGC form table {
width:0%;
}

/*************** Configura��es do formul�rio ************/

div.tabelaGC form table td {
/* Para definir o espa�amento entre as c�lulas */
padding:4px;
}

fieldset {
border: 0pt;
}

div.tabelaGC fieldset legend {
font-family:Georgia, 'Times New Roman', Times, serif;
font-size: 1.0em;
font-weight: bold;
color: #656297;
text-align: left;
padding: 0px;
margin: 0px;
}

div.tabelaGC input,
div.tabelaGC label,
div.tabelaGC select {
font-size: 1.0EM;
font-family:'Times New Roman', Times, serif;
color: #858495;
font-weight: bold;
vertical-align: top;
margin-left: 15px;
}
Binary file added Atividade2/Tt_tabelas_transicao.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions Atividade2/formulario.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Cadastro de Cliente</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" href="tabelas1.css">
<link rel="stylesheet" href="tabelas2.css">
</head>
<body>
<div class="tabelaGC">
<table>
<tr>
<td class="coluna1"> </td>
<td class="coluna2">Cadastro do Cliente</td>
<td class="coluna3">&nbsp;</td>
</tr>
</table>

<form action="processaForm" method="post">
<fieldset>
<legend>Dados do cliente </legend>
<table>
<tr>
<td ><label> Nome:</label></td>
<td colspan="3"><input name="nome" type="text" size="79" maxlength="255"></td>
</tr>
<tr>
<td ><label> Telefone:</label></td>
<td ><input name="telefone" type="text" ></td>
<td ><label>e-mail:</label></td>
<td ><input name="email" type="text" size="40"></td>
</tr>
</table>
</fieldset>
<fieldset>
<legend>Endere&ccedil;o</legend>
<table >
<tr>
<td ><label>Rua/Av:</label></td>
<td><input name="endereco" type="text" size="40" maxlength="255"></td>
<td ><label>N&uacute;mero:&nbsp;</label></td>
<td ><input name="numero" type="text" size="5" maxlength="5"></td>
</tr>
<tr>
<td ><label>Bairro:</label></td>
<td ><input name="bairro" type="text"></td>
<td ><label>CEP:&nbsp;</label></td>
<td><input name="cep" type="text" ></td>
</tr>
<tr>
<td ><label> Cidade:</label></td>
<td ><input name="cidade" type="text" ></td>
<td >&nbsp;</td>
<td >&nbsp;</td>
</tr>
</table>
</fieldset>
</form>
</div>
</body>
</html>
Binary file added Atividade2/tabela_fundoJF_direito.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Atividade2/tabela_fundoJF_esquerdo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Atividade2/tabela_fundoJF_transicao.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Atividade2/tabela_fundo_direito.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Atividade2/tabela_fundo_esquerdo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Atividade2/tabela_fundo_transicao.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading