Trabalho HTML site
<!DOCTYPE html>
<html>
<head> <title>Links e Imagens</title> </head> <body> <a href="http//www.google.com.br">imagem Link <img src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRIpWcX_A2D5qwK3_E8yOXbz0VNcJl373RvKUOlyZ8i0ekMVOPZvw">
</a>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSt87Xv66TBIwpW9BvmGzknTG_lR-NBlosdh_v3gsVQokrQgvcI5Q">
<a href="http//www.baixaki.com.br">Baixaki</a> </body>
</html>
outro
<!DOCTYPE html>
<html>
<head> <title>Listas</title> </head> <body> <h1>Lista das minhas coisas favoritas</h1> <ol> <li>Gotas de chuva nas rosas</li> <li>Bigodes de bichanos</li> <li>Chaleiras de cobre lustradas</li> <li>Luvas de lã quentinhas</li> </ol> <h2> Lista de coisas</h2> <ol> <li>jogos vorazes</li> <li>Mato sem cachorro</li> <li>Coice de mula</li> </ol>
</body>
</html>
fonte tamanho
<head> <title>Primeira alteração de tamanho de fonte</title> </head> <body>
<p style="font-size:10px" > Texto para que você diminua! </p> <p style="font-size:20px"> Texto para que você deixe do tamanho normal!</p> <p style="font-size:40px"> Texto para que você deixe super grande!</p> </body>
</html>
fonte e cor
<!DOCTYPE html>
<html>
<head> <title>Mudando as Cores!</title> </head> <body> <h1 style="color:green;Font-size:16px">Cabeçalho Grande</h1> <p style="color:Violet">Um urso gigante e um patinho eram amigos.</p> <p style="color:red;font-size:10px">Mas o urso ficou com fome e comeu o patinho.</p> </body>
</html>
estilo de letra e tamanho
<h1 style="font-family: Arial">Título Grande</h1> <ol> <li style="font-size:16px;font-family:arial">Este é um grande item em Arial.</li> <li style="font-size:12px;font-family:verdana">Este é um item médio em Verdana.</li> <li style="font-size:10px;font-family:impact">Este é um item pequeno em Impact.</li> </ol> </body>
</html>
cor de fundo
<!DOCTYPE html>
<html>
<head>