在网页中插入图片html图片代码方法:
步骤:
一、html图片标签语法
<img src="divcss-logo-201305.gif" width="165" height="60" />img介绍:
src 后跟的是图片路径地址
width 设置图片宽度
height 设置图片高度
二、具体html 图片显示实例
在html源代码中分别插入三张图片,一张原始大、一张将宽度高度改小小、一张将宽度高度改大。
1、实例完整html代码:
<!DOCTYPE html><html>
<head>
<meta charset="utf-8" />
<title>图片插入html 在线演示</title>
</head>
<body>
<p>原始大图片</p>
<p>
<img src="divcss-logo-201305.gif" width="165" height="60" />
</p>
<p>改小图片</p>
<p>
<img src="divcss-logo-201305.gif" width="105" height="30" />
</p>
<p>改大图片</p>
<p>
<img src="divcss-logo-201305.gif" width="365" height="120" />
</p>
</body>
</html>
2、html插入图片实例截图
3、在线演示:
在html网页中显示图片,插入图片,通过使用img标签来实现,通过也可以将图片作为CSS网页背景图片显示插入到Html网页中(css 背景图片)。
在html中插入图片使用img标签,它有src属性用于填写该图片的路径,alt属性作用是当图片显示失败时就显示alt中的文字。
设置图片的宽用width,高用height,上下左右的位置分别用margin-top,margin-bottom,margin-left,margin-right,代码如下:
<!DOCTYPE html>
<html>
<head>
<title>image</title>
<meta charset="utf-8">
<style type="text/css">
.myImage{
width: 400px
height: 300px
margin-top: 100px
margin-left: 100px
}
</style>
</head>
<body>
<img src="images/cat.jpg" class="myImage" alt="小猫">
</body>
</html>
扩展资料:
img标签的其它常用属性:align属性应用于图像和周围文本的对齐方式,border属性应用于图像边框值。
img 标签向网页中嵌入一幅图像,从技术上讲,<img>标签并不会在网页中插入图像,而是从网页上链接图像,<img>标签创建的是被引用图像的占位空间。
参考资料:
百度百科-image标签