HTML insert image example (html add image)

HTML insert image example (html add image)

Inserting images into HTML requires HTML tags to display them, which can be achieved using the img tag.

1. HTML image tag syntax


Copy code
The code is as follows:

<img src="divcss5-logo-201305.gif" width="165" height="60" />

img introduction:

src is followed by the image path address

width Set the image width

Height Set the image height

2. Specific HTML picture display example - TOP

We insert three pictures into the HTML source code, one with the original size, one with a smaller width and height, and one with a larger width and height.

1. Complete HTML code of the example:


Copy code
The code is as follows:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Image insertion html online demonstration <a href="http://www.vcss.com</title">www.vcss.com</title</a>>
</head>

<body>
<p>Original large image</p>
<p>
<img src="divcss5-logo-201305.gif" width="165" height="60" />
</p>
<p>Small image</p>
<p>
<img src="divcss5-logo-201305.gif" width="105" height="30" />
</p>
<p>Enlarge the image</p>
<p>
<img src="divcss5-logo-201305.gif" width="365" height="120" />
</p>
</body>
</html>

2. Screenshot of HTML inserting picture example

HTML picture insertion display example screenshot

<<:  Problems with configuring https server and reverse proxy with Nginx under Windows

>>:  Tips for turning pixels into comprehensive brand experiences

Recommend

Steps to repair grub.cfg file corruption in Linux system

Table of contents 1. Introduction to grub.cfg fil...

How to reset the root password of Mysql in Windows if you forget it

My machine environment: Windows 2008 R2 MySQL 5.6...

Win10 64-bit MySQL8.0 download and installation tutorial diagram

How do I download MySQL from the official website...

The perfect solution to the Chinese garbled characters in mysql6.x under win7

1. Stop the MySQL service in the command line: ne...

CSS code to achieve 10 modern layouts

Preface I watched web.dev's 2020 three-day li...

Solution to the problem that Centos8 cannot install docker

Problem [root@zh ~]# [root@zh ~]# [root@zh ~]# yu...

Introduction and analysis of three Binlog formats in MySQL

one. Mysql Binlog format introduction Mysql binlo...

How to read the regional information of IP using Nginx and GeoIP module

Install GeoIP on Linux yum install nginx-module-g...

Using iframe techniques to obtain visitor QQ implementation ideas and sample code

Today at work, a friend I added temporarily asked ...

CentOS 7 cannot access the Internet after modifying the network card

Ping www.baidu.com unknown domain name Modify the...

MySQL Tutorial: Subquery Example Detailed Explanation

Table of contents 1. What is a subquery? 2. Where...