Vous êtes sur la page 1sur 2

Exerccio de Aplicao

Autor/Proponente

CRI n. 2

Jlio Machado

Documento Original

Data

Coletnea de Textos

1 TTULO
[HTML

2 DESENVOLVIMENTO
A- [Construa os seguintes documentos em html:
1- Ttulos de Seces
<html>
<head>
<title>O meu quarto documento HTML</title>
</head>
<body>
<h1>Heading1</h1>
<h2>Heading2</h2>
<h3>Heading3</h3>
<h4>Heading4</h4>
<h5>Heading5</h5>
<h6>Heading6</h6>
</body>
</html>

Guarde na pasta HTML como pag4 .htm

2- Listas
<html>
<head>
<title>O meu quinto documento HTML</title>
IMP CON 016a

1/2

CENFIM Centro de Formao Profissional da Indstria Metalrgica e Metalomecnica


</head>
<body>
Lista no ordenada:
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
Lista ordenada:
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li><i>Item 3</i></li>
</ol>
</body>
</html>

Guarde na pasta HTML como pag5..htm

3- Ligaes (Links)
<html>
<head>
<title>O meu sexto documento HTML</title>
</head>
<body>
<h1>Exemplo de ligao ou <i>link</i></h1>
<a href="http://www.web4u.pt">Web4u</a>
</body>
</html>

Guarde na pasta HTML como pag6.htm

3 BIBLIOGRAFIA
[

2/2

Vous aimerez peut-être aussi