Olá a todos,
estou fazendo uns testes simples de html no eclipse e gostaria de saber por qual motivo a imagem que estou adicionando ao código não aparece de jeito nenhum... :(
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Formulário Simples</title>
</head>
<body>
<img src="duke.PNG" width="400" height="448">
<h1 align="center">Cadastro Simples de Pessoa</h1>
<hr>
<form action = "adicionaContato" method="POST">
<h4 align="center">
Nome: <input type="text" name="nome"/> <br/>
E-Mail: <input type="text" name="email"/> <br/>
Endereço: <input type="text" name="endereco" /> <br/>
Dada de Nascimento <input type="text" name="dataNascimento"/> <br/>
<br>
<input type="submit" value="Gravar"/>
</h4>
</form>
<br>
<br>
<a href="http://www.guj.com.br"> Ajuda</a>
</body>
</html>
Tentei colocar a imagem em alguns diretórios, mas nada...
vlw, Obrigadão!!