Exercício 1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PokemonWorld</title>
</head>
<body>
</body>
</html>
Exercício 2
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PokemonWorld</title>
</head>
<body>
<h1>Qual seu pokemon favorito?</h1>
<p>O meu é o squirtle ele é um Pokémon do tipo Água, conhecido como o Pokémon Tartaruga. Ele é um dos Pokémon iniciais da primeira geração</p>
</body>
</html>
Exercício 3
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AddTag</title>
</head>
<body>
<h1>Adicionando uma meta tag</h1>
<p>foi adicionado uma meta tag, logo acima. para definir os caracteres do projeto.</p>
</body>
</html>
Exercício 4
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Livros</title>
</head>
<body>
<h1>Livros</h1>
<h2>categorias</h2>
<p>Entrando em um universo da fantasia, com dragões, feéricos e muito mais</p>
</body>
</html>
Exercício 5
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Livros</title>
</head>
<body>
<h1>Livros</h1>
<h2>categorias</h2>
<p>Entrando em um universo da fantasia, com dragões, feéricos e muito mais</p>
<img src="Acotar.png" alt="seriedefantasia">
</body>
</html>
Exercício 6
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Livros</title>
</head>
<body>
<h1>Livros</h1>
<h2>categorias</h2>
<img src="Acotar.png" alt="seriedefantasia">
<p>Entrando em um universo da fantasia, com dragões, feéricos e muito mais</p>
<ul>
<li>Fantasia</li>
<li>Romance de época</li>
<li>Auto Ajuda</li>
<li>New Adult</li>
<li>Terror</li>
</ul>
</body>
</html>
Exercício 7
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Teste do DOCTYPE</title>
</head>
<body>
<h1>Bem-vindo ao meu site!</h1>
<p>Este é um parágrafo de teste com a declaração DOCTYPE.</p>
<img src="123.png" alt="Imagem de exemplo">
</body>
</html>