Skip to content

Commit 988d129

Browse files
committed
Create Exercicio Teste
1 parent af2ae13 commit 988d129

3 files changed

Lines changed: 45 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="pt-br">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<p>Está é a página de teste 03.</p>
10+
<p><a href="../teste.html" rel="prev">Clique aqui</a> para voltar à página 01</p>
11+
</body>
12+
</html>

exercicios/ex010/teste.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html lang="pt-br">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Meu Exercício Teste</title>
7+
</head>
8+
<body>
9+
<h1>Teste dos tipos de links</h1>
10+
<p>Link Local: <a href="teste02.html" rel="next">Ir à página 2.</a></p>
11+
<p>Link Local, porém em outras pastas: <a href="noticias/teste03.html" rel="next">Ir à página 3.</a>
12+
</p>
13+
<p>Link para site externo: <a href="https://www.youtube.com/channel/UCKDjjeeBmdaiicey2nImISw/" rel="external">Brasil Paralelo.</a> Este link vai abrir o site externo na mesma aba do seu site.
14+
</p>
15+
<p>Link para site externo abrindo uma nova aba do navegador: <a href="https://www.youtube.com/channel/UCKDjjeeBmdaiicey2nImISw/" target="_blank" rel="external">Brasil Paralelo.</a>
16+
</p>
17+
<p>Link para download em PDF: <a href="livro/meulivro.pdf" target="_blank" type="application/pdf">Baixe aqui.</a>
18+
</p>
19+
<p>Link para download de arquivo Zip: <a href="livro/meulivro.zip" type="application/zip">Baixe aqui</a></p>
20+
</body>
21+
</html>

exercicios/ex010/teste02.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="pt-br">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Página 02</title>
7+
</head>
8+
<body>
9+
<p>Está é a página de teste 02.</p>
10+
<p><a href="teste.html" rel="prev">Clique aqui para voltar a página 01.</a></p>
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)