segunda-feira, 30 de agosto de 2010
Loteria codigo
<html>
<head><TITLE>Loteria</TITLE></head>
<body>
<?php include "funcao-loteria.php" ?>
<?php
if(isset($_GET["l"])&&$_GET["l"]!="")
{
$linhas=$_GET["l"];
}
else{
$linhas=20;}
if(isset($_GET["c"])){
$color=$_GET["c"];
}
else{
$color="#FFFFFF";}
?>
<table align="center" border="3" width="100%">
<h1 align="center"><capition>Loteria de futebol</capition></h1>
<form action="loteria.php" method="GET">
Numero de linhas:<input width="10%" name="l" type="text"><br>
Cor:<input width="10%" name="c" type="text">
<input type=submit value="enviar">
</form>
<h2><TR bgcolor=#36FF43><TD align="center" width="10%">JOGO</TD><td width="20%" align="center">A</td><td width="20%" align="center">EMPATE</td><TD width="20%" align="center">B</TD></TR></h2>
<?php loteria($linhas,$color) ?>
</table>
</body>
</html>
Função
<?php
function sorteio(){
$ganho=mt_rand(1,3);
return $ganho;
}
function desenho_linha($cor,$ganho , $i){
if($ganho==1){
if($i%2==0){
echo "<TR bgcolor=$cor align=center ><TD>" . $i . "</TD><td align=center> X </td><td></td><TD></TD></TR>";
}
else{
echo "<TR align=center ><TD>" . $i . "</TD><td align=center> X </td><td></td><TD></TD></TR>";
}
}
else {
if($ganho==2){
if($i%2==0){
echo "<TR bgcolor=$cor align=center ><TD>" . $i . "</TD><td></td><td align=center> X </td><TD></TD></TR>";
}
else{
echo "<TR align=center ><TD>" . $i . "</TD><td></td><td align=center> X </td><TD></TD></TR>";
}
}
else{
if($i%2==0){
echo "<TR bgcolor=$cor align=center ><TD>" . $i . "</TD><td></td><td></td><TD align=center> X </TD></TR>";
}
else{
echo "<TR align=center ><TD>" . $i . "</TD><td></td><td></td><TD align=center> X </TD></TR>";
}
}
}
}
function loteria($linhas=20,$cor="blue"){
for($i=1;$i<=$linhas;$i++){
$ganho=sorteio();
desenho_linha($cor,$ganho, $i);
}
}
?>
<head><TITLE>Loteria</TITLE></head>
<body>
<?php include "funcao-loteria.php" ?>
<?php
if(isset($_GET["l"])&&$_GET["l"]!="")
{
$linhas=$_GET["l"];
}
else{
$linhas=20;}
if(isset($_GET["c"])){
$color=$_GET["c"];
}
else{
$color="#FFFFFF";}
?>
<table align="center" border="3" width="100%">
<h1 align="center"><capition>Loteria de futebol</capition></h1>
<form action="loteria.php" method="GET">
Numero de linhas:<input width="10%" name="l" type="text"><br>
Cor:<input width="10%" name="c" type="text">
<input type=submit value="enviar">
</form>
<h2><TR bgcolor=#36FF43><TD align="center" width="10%">JOGO</TD><td width="20%" align="center">A</td><td width="20%" align="center">EMPATE</td><TD width="20%" align="center">B</TD></TR></h2>
<?php loteria($linhas,$color) ?>
</table>
</body>
</html>
Função
<?php
function sorteio(){
$ganho=mt_rand(1,3);
return $ganho;
}
function desenho_linha($cor,$ganho , $i){
if($ganho==1){
if($i%2==0){
echo "<TR bgcolor=$cor align=center ><TD>" . $i . "</TD><td align=center> X </td><td></td><TD></TD></TR>";
}
else{
echo "<TR align=center ><TD>" . $i . "</TD><td align=center> X </td><td></td><TD></TD></TR>";
}
}
else {
if($ganho==2){
if($i%2==0){
echo "<TR bgcolor=$cor align=center ><TD>" . $i . "</TD><td></td><td align=center> X </td><TD></TD></TR>";
}
else{
echo "<TR align=center ><TD>" . $i . "</TD><td></td><td align=center> X </td><TD></TD></TR>";
}
}
else{
if($i%2==0){
echo "<TR bgcolor=$cor align=center ><TD>" . $i . "</TD><td></td><td></td><TD align=center> X </TD></TR>";
}
else{
echo "<TR align=center ><TD>" . $i . "</TD><td></td><td></td><TD align=center> X </TD></TR>";
}
}
}
}
function loteria($linhas=20,$cor="blue"){
for($i=1;$i<=$linhas;$i++){
$ganho=sorteio();
desenho_linha($cor,$ganho, $i);
}
}
?>
domingo, 29 de agosto de 2010
domingo, 22 de agosto de 2010
Loteria de jogos
http://basalto.ifsc.usp.br/~thereza_fortunato/loteria.php
<html>
<head>
<TITLE>Loteria de Futebol</TITLE>
</head>
<body>
<table align="center" border="3" width="100%">
<h1 align="center"><capition>Loteria de futebol</capition></h1>
<h2><TR><TD align="center" width="10%">JOGO</TD><td width="20%" align="center">A</td><td width="20%" align="center">EMPATE</td><TD width="20%" align="center">B</TD></TR></h2>
<?php
srand(time());
for($i=1;$i<=20;$i++){
$ganho=rand(1,3);
if($ganho==1){
if($i%2==0){
echo "<TR bgcolor=#36FF43 align=center ><TD>" . $i . "</TD><td align=center> X </td><td></td><TD></TD></TR>";
}
else{
echo "<TR bgcolor=#E74AFF align=center ><TD>" . $i . "</TD><td align=center> X </td><td></td><TD></TD></TR>";}
}
else {
if($ganho==2){
if($i%2==0){
echo "<TR bgcolor=#36FF43 align=center ><TD>" . $i . "</TD><td></td><td align=center> X </td><TD></TD></TR>";}
else{
echo "<TR bgcolor=#E74AFF align=center ><TD>" . $i . "</TD><td></td><td align=center> X </td><TD></TD></TR>";}
}
else{
if($i%2==0){
echo "<TR bgcolor=#36FF43 align=center ><TD>" . $i . "</TD><td></td><td></td><TD align=center> X </TD></TR>";}
else{
echo "<TR bgcolor=#E74AFF align=center ><TD>" . $i . "</TD><td></td><td></td><TD align=center> X </TD></TR>";}
}
}
}
?>
</table>
</body>
</html>
<html>
<head>
<TITLE>Loteria de Futebol</TITLE>
</head>
<body>
<table align="center" border="3" width="100%">
<h1 align="center"><capition>Loteria de futebol</capition></h1>
<h2><TR><TD align="center" width="10%">JOGO</TD><td width="20%" align="center">A</td><td width="20%" align="center">EMPATE</td><TD width="20%" align="center">B</TD></TR></h2>
<?php
srand(time());
for($i=1;$i<=20;$i++){
$ganho=rand(1,3);
if($ganho==1){
if($i%2==0){
echo "<TR bgcolor=#36FF43 align=center ><TD>" . $i . "</TD><td align=center> X </td><td></td><TD></TD></TR>";
}
else{
echo "<TR bgcolor=#E74AFF align=center ><TD>" . $i . "</TD><td align=center> X </td><td></td><TD></TD></TR>";}
}
else {
if($ganho==2){
if($i%2==0){
echo "<TR bgcolor=#36FF43 align=center ><TD>" . $i . "</TD><td></td><td align=center> X </td><TD></TD></TR>";}
else{
echo "<TR bgcolor=#E74AFF align=center ><TD>" . $i . "</TD><td></td><td align=center> X </td><TD></TD></TR>";}
}
else{
if($i%2==0){
echo "<TR bgcolor=#36FF43 align=center ><TD>" . $i . "</TD><td></td><td></td><TD align=center> X </TD></TR>";}
else{
echo "<TR bgcolor=#E74AFF align=center ><TD>" . $i . "</TD><td></td><td></td><TD align=center> X </TD></TR>";}
}
}
}
?>
</table>
</body>
</html>
TABUADA COLORIDA
http://basalto.ifsc.usp.br/~thereza_fortunato/tabuada2.php
<html>
<body>
<p><strong>Tabuada do 2</strong></p>
<br>
<?php
for($i=0;$i<=10;$i++){
$t=$i*2;
?>
<table>
<?php
if($i%2!=0){
echo "<tr> <td bgcolor=#FF98FD> 2x" . $i . "=" . $t . "<br>"."</td> </tr>";
}
else{
echo "2x" . $i . "=" . $t . "<br>";
}
?>
</table>
<?php } ?>
</body>
</html>
<html>
<body>
<p><strong>Tabuada do 2</strong></p>
<br>
<?php
for($i=0;$i<=10;$i++){
$t=$i*2;
?>
<table>
<?php
if($i%2!=0){
echo "<tr> <td bgcolor=#FF98FD> 2x" . $i . "=" . $t . "<br>"."</td> </tr>";
}
else{
echo "2x" . $i . "=" . $t . "<br>";
}
?>
</table>
<?php } ?>
</body>
</html>
sexta-feira, 13 de agosto de 2010
Estrutura básica de HTML
<HTML>
<HEAD>
<TITLE>Titulo do Documento</TITLE>
<META NAME="Author" CONTENT="Nome autor"></META>
<META NAME="Description" CONTENT="descrição do site"></META>
</HEAD>
<BODY>
texto,
imagem,
links,
</BODY>
</HTML>
<HEAD>
<TITLE>Titulo do Documento</TITLE>
<META NAME="Author" CONTENT="Nome autor"></META>
<META NAME="Description" CONTENT="descrição do site"></META>
</HEAD>
<BODY>
texto,
imagem,
links,
</BODY>
</HTML>
segunda-feira, 9 de agosto de 2010
Página html - 5
http://basalto.ifsc.usp.br/~thereza_fortunato/guiadocao/curiosidades.html
<HTML>
<HEAD>
<TITLE>Guia do Cão</TITLE>
<META NAME="Author" CONTENT="Thereza Cury Fortunato"></META>
<META NAME="Description" CONTENT="Manual para a criação do seu cachorrinho"></META>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
</HEAD>
<BODY>
<H1 ALIGN="CENTER"><font color="fuchsia" size=39><b>Guia do cão</b></font></H1>
<HR ALIGN="CENTER" WIDTH=60% NOSHADE>
<br><TABLE align="center" width=90%>
<caption><h1>Caracteristicas de algumas raças</h1></caption>
<tr>
<td valign="top">
<table>
<TR><TD><a href = "index.html">Home</a></td><td>
<tr><td><a href = "alimentacao.html">Alimentação</a></td></tr>
<tr><td><a href = "higiene.html">Higiene</a></td></tr>
<tr><td><a href = "saude.html">Saúde</a>
<tr><td><a href = "curiosidades.html">Curiosidades</a></td></tr>
</table>
</td>
<td>
<table align="center" width=80%>
<tr>
<td><h2>Poodle</h2><br>Os poodles são conhecidos por serem inteligentes,dóceis e obedientes,<br>
por isso são considerados cães ideais para apartamentos.</td>
<td><div>
<img src="img/poodle.jpg" width="200">
</div></td>
</tr>
<tr>
<td><h2>SRD (Vira-lata)</h2><br>Os vira latas tem o seu olfato mais desemvolvidos<br>
e são mais reistente a doenças.</td>
<td><div>
<img src="img/vira-lata.jpg"width="200">
</div></td>
</tr>
<tr>
<td><h2>Dalmata</h2><br>Eles são calmos , inteligentese, companheiros, demonstram o que querem<br>
e costumam manter relacionamento harmonioso com outras raças.</td>
<td><div>
<img src="img/dalmata.jpg" width="200">
</div></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<HTML>
<HEAD>
<TITLE>Guia do Cão</TITLE>
<META NAME="Author" CONTENT="Thereza Cury Fortunato"></META>
<META NAME="Description" CONTENT="Manual para a criação do seu cachorrinho"></META>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
</HEAD>
<BODY>
<H1 ALIGN="CENTER"><font color="fuchsia" size=39><b>Guia do cão</b></font></H1>
<HR ALIGN="CENTER" WIDTH=60% NOSHADE>
<br><TABLE align="center" width=90%>
<caption><h1>Caracteristicas de algumas raças</h1></caption>
<tr>
<td valign="top">
<table>
<TR><TD><a href = "index.html">Home</a></td><td>
<tr><td><a href = "alimentacao.html">Alimentação</a></td></tr>
<tr><td><a href = "higiene.html">Higiene</a></td></tr>
<tr><td><a href = "saude.html">Saúde</a>
<tr><td><a href = "curiosidades.html">Curiosidades</a></td></tr>
</table>
</td>
<td>
<table align="center" width=80%>
<tr>
<td><h2>Poodle</h2><br>Os poodles são conhecidos por serem inteligentes,dóceis e obedientes,<br>
por isso são considerados cães ideais para apartamentos.</td>
<td><div>
<img src="img/poodle.jpg" width="200">
</div></td>
</tr>
<tr>
<td><h2>SRD (Vira-lata)</h2><br>Os vira latas tem o seu olfato mais desemvolvidos<br>
e são mais reistente a doenças.</td>
<td><div>
<img src="img/vira-lata.jpg"width="200">
</div></td>
</tr>
<tr>
<td><h2>Dalmata</h2><br>Eles são calmos , inteligentese, companheiros, demonstram o que querem<br>
e costumam manter relacionamento harmonioso com outras raças.</td>
<td><div>
<img src="img/dalmata.jpg" width="200">
</div></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Página html - 4
http://basalto.ifsc.usp.br/~thereza_fortunato/guiadocao/saude.html
<HTML>
<HEAD>
<TITLE>Guia do Cão</TITLE>
<META NAME="Author" CONTENT="Thereza Cury Fortunato"></META>
<META NAME="Description" CONTENT="Manual para a criação do seu cachorrinho"></META>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
</HEAD>
<BODY>
<H1 ALIGN="CENTER"><font color="fuchsia" size=39><b>Guia do cão</b></font></H1>
<HR ALIGN="CENTER" WIDTH=60% NOSHADE>
<br><TABLE align="center" width=90%>
<caption><h1>Saúde</h1></caption>
<tr>
<td valign="top">
<table>
<TR><TD><a href = "index.html">Home</a></td><td>
<tr><td><a href = "alimentacao.html">Alimentação</a></td></tr>
<tr><td><a href = "higiene.html">Higiene</a></td></tr>
<tr><td><a href = "saude.html">Saúde</a>
<tr><td><a href = "curiosidades.html">Curiosidades</a></td></tr>
</table>
</td>
<td>
<TABLE align="center">
<tr>
<caption><h3>VACINAS</h3></caption>
<td>
<TABLE BORDER=4>
<CAPTION><b>Primeiro ano de vida</b></CAPTION>
<TR><TH>ÉPOCA</TH><TH>VACINAS</TH></TR>
<TR><TD>45 a 60 dias </TD><TD>1ª dose de octupla<br> 1ªdose contra a giardia<br>contra tosse dos canis </TD></TR>
<TR><TD>21 dias após a 1ªdose</TD><TD>2ªdose de octupla<br> 2ªdose contra a giardia</TD></TR>
<TR><TD>21 dias após a 2ªdose</TD><TD>3ªdose de octupla</TD></TR>
<TR><TD>a partir de 4 meses</TD><TD>anti rábica</td></tr>
</TABLE>
<p>Após o primeiro ano todas as vacinas devem<br> ser reforçadas</p>
</td>
<td>
<div>
<IMG SRC="img/vacina2.jpg">
</div>
</td>
</tr>
</table>
<hr align="center" width=60% noshade>
<table align="center">
<tr>
<caption><h3>Vermifugação</h3></caption>
<td>
<table border=4>
<caption>A vermifugação deve ser feita no filhote da seguinte forma</caption>
<tr><td>30 dias de idade</td><td>1ª dose de vermifugo</td></tr>
<tr><td>45 dias de idade</td><td>2ª dose de vermifugo</td></tr>
<tr><td>60 dias de idade</td><td>3ª dose de vermifugo</td></tr>
</table>
</td>
<td>
<div>
<IMG SRC="img/vermifugo.jpg">
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<HTML>
<HEAD>
<TITLE>Guia do Cão</TITLE>
<META NAME="Author" CONTENT="Thereza Cury Fortunato"></META>
<META NAME="Description" CONTENT="Manual para a criação do seu cachorrinho"></META>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
</HEAD>
<BODY>
<H1 ALIGN="CENTER"><font color="fuchsia" size=39><b>Guia do cão</b></font></H1>
<HR ALIGN="CENTER" WIDTH=60% NOSHADE>
<br><TABLE align="center" width=90%>
<caption><h1>Saúde</h1></caption>
<tr>
<td valign="top">
<table>
<TR><TD><a href = "index.html">Home</a></td><td>
<tr><td><a href = "alimentacao.html">Alimentação</a></td></tr>
<tr><td><a href = "higiene.html">Higiene</a></td></tr>
<tr><td><a href = "saude.html">Saúde</a>
<tr><td><a href = "curiosidades.html">Curiosidades</a></td></tr>
</table>
</td>
<td>
<TABLE align="center">
<tr>
<caption><h3>VACINAS</h3></caption>
<td>
<TABLE BORDER=4>
<CAPTION><b>Primeiro ano de vida</b></CAPTION>
<TR><TH>ÉPOCA</TH><TH>VACINAS</TH></TR>
<TR><TD>45 a 60 dias </TD><TD>1ª dose de octupla<br> 1ªdose contra a giardia<br>contra tosse dos canis </TD></TR>
<TR><TD>21 dias após a 1ªdose</TD><TD>2ªdose de octupla<br> 2ªdose contra a giardia</TD></TR>
<TR><TD>21 dias após a 2ªdose</TD><TD>3ªdose de octupla</TD></TR>
<TR><TD>a partir de 4 meses</TD><TD>anti rábica</td></tr>
</TABLE>
<p>Após o primeiro ano todas as vacinas devem<br> ser reforçadas</p>
</td>
<td>
<div>
<IMG SRC="img/vacina2.jpg">
</div>
</td>
</tr>
</table>
<hr align="center" width=60% noshade>
<table align="center">
<tr>
<caption><h3>Vermifugação</h3></caption>
<td>
<table border=4>
<caption>A vermifugação deve ser feita no filhote da seguinte forma</caption>
<tr><td>30 dias de idade</td><td>1ª dose de vermifugo</td></tr>
<tr><td>45 dias de idade</td><td>2ª dose de vermifugo</td></tr>
<tr><td>60 dias de idade</td><td>3ª dose de vermifugo</td></tr>
</table>
</td>
<td>
<div>
<IMG SRC="img/vermifugo.jpg">
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Página html - 3
http://basalto.ifsc.usp.br/~thereza_fortunato/guiadocao/higiene.html
<HTML>
<HEAD>
<TITLE>Guia do Cão</TITLE>
<META NAME="Author" CONTENT="Thereza Cury Fortunato"></META>
<META NAME="Description" CONTENT="Manual para a criação do seu cachorrinho"></META>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
</HEAD>
<BODY>
<H1 ALIGN="CENTER"><font color="fuchsia" size=39><b>Guia do cão</b></font></H1>
<HR ALIGN="CENTER" WIDTH=60% NOSHADE>
<br><TABLE align="center" width=90%>
<caption><h1>Higiene</h1></caption>
<tr>
<td valign="top">
<table>
<TR><TD><a href = "index.html">Home</a></td><td>
<tr><td><a href = "alimentacao.html">Alimentação</a></td></tr>
<tr><td><a href = "higiene.html">Higiene</a></td></tr>
<tr><td><a href = "saude.html">Saúde</a>
<tr><td><a href = "curiosidades.html">Curiosidades</a></td></tr>
</table>
</td>
<td>
<H3>Dentária</H3>
<P>Deve-se efetuar a escovação dentaria em seu cão pelo menos uma vez na semana.</P>
<H3>Banho</H3>
<P>As raças com pelos longos não devem tomar banho toda semana pelo risco de lesão fungicas sob o pelo,<br>
porém deve-se fazer uma escovação três vêzes na semana.</P>
<table>
<H3>Necessidades fisiológicas</H3>
<tr>
<td>
<P>Para cães que residem em apartamentos a treinamento para fazer sempre no mesmo lugar,<br>
tendo varias opçoes de lugares mostrados ao lado:</P>
</td>
<td>
<DIV ALIGN="center">
<IMG SRC="img/TAPETE.jpg">
</DIV>
<P ALIGN="center">Tapete higienico</P>
<DIV align="center">
<IMG SRC="img/POSTINHO.jpg" width=20%>
</DIV>
<P ALIGN="center"> Postinho higienico</P>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<HTML>
<HEAD>
<TITLE>Guia do Cão</TITLE>
<META NAME="Author" CONTENT="Thereza Cury Fortunato"></META>
<META NAME="Description" CONTENT="Manual para a criação do seu cachorrinho"></META>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
</HEAD>
<BODY>
<H1 ALIGN="CENTER"><font color="fuchsia" size=39><b>Guia do cão</b></font></H1>
<HR ALIGN="CENTER" WIDTH=60% NOSHADE>
<br><TABLE align="center" width=90%>
<caption><h1>Higiene</h1></caption>
<tr>
<td valign="top">
<table>
<TR><TD><a href = "index.html">Home</a></td><td>
<tr><td><a href = "alimentacao.html">Alimentação</a></td></tr>
<tr><td><a href = "higiene.html">Higiene</a></td></tr>
<tr><td><a href = "saude.html">Saúde</a>
<tr><td><a href = "curiosidades.html">Curiosidades</a></td></tr>
</table>
</td>
<td>
<H3>Dentária</H3>
<P>Deve-se efetuar a escovação dentaria em seu cão pelo menos uma vez na semana.</P>
<H3>Banho</H3>
<P>As raças com pelos longos não devem tomar banho toda semana pelo risco de lesão fungicas sob o pelo,<br>
porém deve-se fazer uma escovação três vêzes na semana.</P>
<table>
<H3>Necessidades fisiológicas</H3>
<tr>
<td>
<P>Para cães que residem em apartamentos a treinamento para fazer sempre no mesmo lugar,<br>
tendo varias opçoes de lugares mostrados ao lado:</P>
</td>
<td>
<DIV ALIGN="center">
<IMG SRC="img/TAPETE.jpg">
</DIV>
<P ALIGN="center">Tapete higienico</P>
<DIV align="center">
<IMG SRC="img/POSTINHO.jpg" width=20%>
</DIV>
<P ALIGN="center"> Postinho higienico</P>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Página html - 2
http://basalto.ifsc.usp.br/~thereza_fortunato/guiadocao/alimentacao.html
<HTML>
<HEAD>
<TITLE>Guia do Cão</TITLE>
<META NAME="Author" CONTENT="Thereza Cury Fortunato"></META>
<META NAME="Description" CONTENT="Manual para a criação do seu cachorrinho"></META>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
</HEAD>
<BODY>
<H1 ALIGN="CENTER"><font color="fuchsia" size=39><b>Guia do cão</b></font></H1>
<HR ALIGN="CENTER" WIDTH=60% NOSHADE>
<br><TABLE align="center" width=90%>
<caption><h1>Alimentação</h1></caption>
<tr>
<td valign="top">
<table>
<TR><TD><a href = "index.html">Home</a></td><td>
<tr><td><a href = "alimentacao.html">Alimentação</a></td></tr>
<tr><td><a href = "higiene.html">Higiene</a></td></tr>
<tr><td><a href = "saude.html">Saúde</a>
<tr><td><a href = "curiosidades.html">Curiosidades</a></td></tr>
</table>
</td>
<td>
<div align="center">
<img src="img/racao.jpg" width=20%>
</div>
<h3>Porque alimentar o seu cão com ração?</H3>
<p>O cão tem necessidades nutricionais diferentes da nossa, então quando alimentamo-lo com comida caseira geralmente focamos<br>
somente nas nossas necessidades do ser humano.<br>
<b><br>Argumentos favoráveis a ração:<br><br></b>
1. Necessidades do cão - Cobre todas as necessidades nutricionais.<br>
2. A praticidade - já temos pouco tempo para nós, então comprar a comida<br>
de nosso cãozinho pronta é mais prático.<br>
3. Custo - a ração de seu cãozinho sai mais barata do que uma alimentação<br>
de outra forma.<br><br>
<b> Diferenças da ração?<br><br></b>
Com a ração o cão consegue ter uma dieta variada, tanto quanto o seu ancestral o lobo.</p>
</td>
</tr>
</table>
</body>
</html>
<HTML>
<HEAD>
<TITLE>Guia do Cão</TITLE>
<META NAME="Author" CONTENT="Thereza Cury Fortunato"></META>
<META NAME="Description" CONTENT="Manual para a criação do seu cachorrinho"></META>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
</HEAD>
<BODY>
<H1 ALIGN="CENTER"><font color="fuchsia" size=39><b>Guia do cão</b></font></H1>
<HR ALIGN="CENTER" WIDTH=60% NOSHADE>
<br><TABLE align="center" width=90%>
<caption><h1>Alimentação</h1></caption>
<tr>
<td valign="top">
<table>
<TR><TD><a href = "index.html">Home</a></td><td>
<tr><td><a href = "alimentacao.html">Alimentação</a></td></tr>
<tr><td><a href = "higiene.html">Higiene</a></td></tr>
<tr><td><a href = "saude.html">Saúde</a>
<tr><td><a href = "curiosidades.html">Curiosidades</a></td></tr>
</table>
</td>
<td>
<div align="center">
<img src="img/racao.jpg" width=20%>
</div>
<h3>Porque alimentar o seu cão com ração?</H3>
<p>O cão tem necessidades nutricionais diferentes da nossa, então quando alimentamo-lo com comida caseira geralmente focamos<br>
somente nas nossas necessidades do ser humano.<br>
<b><br>Argumentos favoráveis a ração:<br><br></b>
1. Necessidades do cão - Cobre todas as necessidades nutricionais.<br>
2. A praticidade - já temos pouco tempo para nós, então comprar a comida<br>
de nosso cãozinho pronta é mais prático.<br>
3. Custo - a ração de seu cãozinho sai mais barata do que uma alimentação<br>
de outra forma.<br><br>
<b> Diferenças da ração?<br><br></b>
Com a ração o cão consegue ter uma dieta variada, tanto quanto o seu ancestral o lobo.</p>
</td>
</tr>
</table>
</body>
</html>
Página html- index.html
http://basalto.ifsc.usp.br/~thereza_fortunato/guiadocao/index.html
<HTML>
<HEAD>
<TITLE>Guia do Cão</TITLE>
<META NAME="Author" CONTENT="Thereza Cury Fortunato"></META>
<META NAME="Description" CONTENT="Manual para a criação do seu cachorrinho"></META>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
</HEAD>
<BODY>
<H1 ALIGN="CENTER"><font color="fuchsia" size=39><b>Guia do cão</b></font></H1><br>
<HR ALIGN="CENTER" WIDTH=60% NOSHADE><br><br>
<br><TABLE align="center" width=90%>
<tr>
<td valign="top">
<table>
<TR><TD><a href = "index.html">Home</a></td><td>
<tr><td><a href = "alimentacao.html">Alimentação</a></td></tr>
<tr><td><a href = "higiene.html">Higiene</a></td></tr>
<tr><td><a href = "saude.html">Saúde</a>
<tr><td><a href = "curiosidades.html">Curiosidades</a></td></tr>
</table>
</td>
<td>
<P ALIGN="center">
<FONT FACE="Verdana" ><b>Nesse site, você aprenderá a cuidar do melhor amigo do homem:<br> o cachorro de estimação</b></FONT>
</P>
<DIV ALIGN="center">
<IMG SRC="img/cachorro.jpg">
</DIV>
<P ALIGN="center">
<FONT FACE="Verdana" SIZE=-2>Para críticas e sugestões:<BR><a href = "thereza_cury@terra.com.br">thereza_cury@terra.com.br</a></FONT>
</P>
</td>
</tr>
</table>
</body>
</html>
<HTML>
<HEAD>
<TITLE>Guia do Cão</TITLE>
<META NAME="Author" CONTENT="Thereza Cury Fortunato"></META>
<META NAME="Description" CONTENT="Manual para a criação do seu cachorrinho"></META>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
</HEAD>
<BODY>
<H1 ALIGN="CENTER"><font color="fuchsia" size=39><b>Guia do cão</b></font></H1><br>
<HR ALIGN="CENTER" WIDTH=60% NOSHADE><br><br>
<br><TABLE align="center" width=90%>
<tr>
<td valign="top">
<table>
<TR><TD><a href = "index.html">Home</a></td><td>
<tr><td><a href = "alimentacao.html">Alimentação</a></td></tr>
<tr><td><a href = "higiene.html">Higiene</a></td></tr>
<tr><td><a href = "saude.html">Saúde</a>
<tr><td><a href = "curiosidades.html">Curiosidades</a></td></tr>
</table>
</td>
<td>
<P ALIGN="center">
<FONT FACE="Verdana" ><b>Nesse site, você aprenderá a cuidar do melhor amigo do homem:<br> o cachorro de estimação</b></FONT>
</P>
<DIV ALIGN="center">
<IMG SRC="img/cachorro.jpg">
</DIV>
<P ALIGN="center">
<FONT FACE="Verdana" SIZE=-2>Para críticas e sugestões:<BR><a href = "thereza_cury@terra.com.br">thereza_cury@terra.com.br</a></FONT>
</P>
</td>
</tr>
</table>
</body>
</html>
Enquete
http://basalto.ifsc.usp.br/~thereza_fortunato/enquete.html
<html>
<head>
<title>Enquete</title>
<meta http-equiv="Content_Type" content="text/html;charset=utf-8"/>
</head>
<body>
<h4>Qual o seu time?</h4><br>
<input type=radio name="time" value="palm">Palmeiras<br>
<input type=radio name="time" value="cori">Corinthians<br>
<input type=radio name="time" value="são">São Paulo<br>
<input type=radio name="time" value="sant">Santos<br>
<input type=radio name="time" value="outr">outros<br>
</body>
</html>
<html>
<head>
<title>Enquete</title>
<meta http-equiv="Content_Type" content="text/html;charset=utf-8"/>
</head>
<body>
<h4>Qual o seu time?</h4><br>
<input type=radio name="time" value="palm">Palmeiras<br>
<input type=radio name="time" value="cori">Corinthians<br>
<input type=radio name="time" value="são">São Paulo<br>
<input type=radio name="time" value="sant">Santos<br>
<input type=radio name="time" value="outr">outros<br>
</body>
</html>
Dados Usários
http://basalto.ifsc.usp.br/~thereza_fortunato/dadosusuario.html
<html>
<head>
<title>formulário</title>
<meta http-equiv="Content_Type" content="text/html;charset=utf-8"/>
</head>
<body>
<h4>Por favor digite os seguintes dados</h4>
Nome: <input name="nome"><br>
Endereço: <input name="endereço"><br>
Telefone: <input name="telefone"><br>
Email: <input name="email"><br>
<input type=submit value="enviar">
<input type=reset value="apagar">
</body>
</html>
<html>
<head>
<title>formulário</title>
<meta http-equiv="Content_Type" content="text/html;charset=utf-8"/>
</head>
<body>
<h4>Por favor digite os seguintes dados</h4>
Nome: <input name="nome"><br>
Endereço: <input name="endereço"><br>
Telefone: <input name="telefone"><br>
Email: <input name="email"><br>
<input type=submit value="enviar">
<input type=reset value="apagar">
</body>
</html>
Assinar:
Comentários (Atom)