HTML 中编写的代码中未显示图像
Images not showing in code written in HTML
我想显示 html 文件中显示的四个不同图像,我使用“source/file”方法,但它们没有显示。只是显示损坏的图像标志。
<html>
<head>
<title> Insertar imágenes en una web </title>
<meta charset="utf-8">
</head>
<body>
<p>Imagen de una boda</p>
<img src="Asignaciones%2520de%2520informatica/boda.jpg">
<p>Imagen de un mercado</p>
<img src="Asignaciones%2520de%2520informatica/mercado.jpg">
<p>Imagen de una atleta</p>
<img src="Asignaciones%2520de%2520informatica/ronaldinho.jpg">
<p>Imagen de un atardecer</p>
<img src="Asignaciones%2520de%2520informatica/atardecer.jpg">
</body>
</html>
确保图像在您系统上的路径位于 html 可访问的目录中。确保路径正确,图片名称正确
我想显示 html 文件中显示的四个不同图像,我使用“source/file”方法,但它们没有显示。只是显示损坏的图像标志。
<html>
<head>
<title> Insertar imágenes en una web </title>
<meta charset="utf-8">
</head>
<body>
<p>Imagen de una boda</p>
<img src="Asignaciones%2520de%2520informatica/boda.jpg">
<p>Imagen de un mercado</p>
<img src="Asignaciones%2520de%2520informatica/mercado.jpg">
<p>Imagen de una atleta</p>
<img src="Asignaciones%2520de%2520informatica/ronaldinho.jpg">
<p>Imagen de un atardecer</p>
<img src="Asignaciones%2520de%2520informatica/atardecer.jpg">
</body>
</html>
确保图像在您系统上的路径位于 html 可访问的目录中。确保路径正确,图片名称正确