HTML web page image tag

HTML web page image tag src Source file of the image alt Hint text width, height Width, height border Border vspace Vertical spacing hspace Horizontal spacing align Alignment dynsrc Set the playback of the avi file loop Set the number of times the avi file is looped loopdelay Set the delay for loop playback of the avi file start Set the playback mode of the avi file lowsrc Set the low-resolution image usemap Image map image source file attributes SRC
By specifying the path of the image source file with the src attribute, you can complete the image insertion.
Basic syntax <img src="File_name">
Syntax explanation: The path is specified through the src attribute, and File_name is the path to which the image is to be inserted. File example: 9-1.htm
Insert images through the src attribute of the <img> tag.
01 <!-- ------------------------------ -->
02 <!-- File example: 9-1.htm -->
03 <!-- File Description: Insert image-->
04 <!-- ------------------------------ -->
05 <html>
06 <head>
07 <title>Insert picture</title>
08 </head>
09 <body>
10 <h1>Mainstream Web Design Software</h1>
11 <img src="9-1.JPG">
12 Currently, web page technology has entered a new stage. Web pages are no longer just a pile of pictures and boring texts. People are now pursuing dynamic effects and interactivity of web pages. Macromedia's three web design softwares Dreamweaver, Flash and Fireworks are the outstanding representatives of interactive web design. Its latest version mx 2004 inherits the advantages of the previous versions and further integrates the functions, which is very suitable for the needs of web design and website construction. <p>
13 </body>
14 </html> The file description line 11 inserts a JPEG image file.
Previous Page 1 2 3 4 5 6 7 8 Next Page Read Full Article
Insert image tag <IMG>
The colorful web pages we see today are all due to the role of images. If you think back to the past, when the Internet was filled with plain text, which was very boring, you will understand the importance of images in web design. Images can be inserted into HTML pages. The commonly used image formats on web pages are JPEG and GIF:
JPEG (Joint Photographic Experts Group) is a file format designed specifically for photographic images. JPEG supports millions of colors. JPEG is a lossy format, which means that some image data is lost during compression, which reduces the quality of the final file. However, the image data that is discarded is so small that it won't make a very noticeable difference in quality.
Graphics Interchange Format (GIF) is a very popular format for web page images. Although it includes only 256 colors, GIF provides excellent, nearly lossless image compression. And GIF can contain transparent areas and multiple animations. It works by scanning rows of pixels horizontally to find fixed color areas to compress, and then reducing the number of pixels in the same area. Therefore, GIF is usually suitable for cartoons, graphics, logos, graphics with transparent areas, animations, etc.
Inserting pictures into a page can beautify it. There is only one tag for inserting images, and that is the <img> tag. When inserting an image, it is not enough to just use the <img> tag; other attributes are required, as shown in the following table.
property describe

<<:  CSS3 clear float method example

>>:  jQuery realizes image highlighting

Recommend

Summary of HTML Hack Tags in IE Browser

Copy code The code is as follows: <!--[if !IE]...

DIV background semi-transparent text non-translucent style

DIV background is semi-transparent, but the words ...

Solve the problem after adding --subnet to Docker network Create

After adding –subnet to Docker network Create, us...

Some points on using standard HTML codes in web page creation

<br />The most common mistake made by many w...

Quick solution for forgetting MySQL8 password

Preface When we forget the MySQL database passwor...

JS realizes the effect of Baidu News navigation bar

This article shares the specific code of JS to ac...

Implementing a shopping cart with native JavaScript

This article shares the specific code of JavaScri...

How to use .htaccess to prohibit a certain IP from accessing the website

Preface For cost considerations, most webmasters ...

MySQL performance optimization: how to use indexes efficiently and correctly

Practice is the only way to test the truth. This ...

Some questions about hyperlinks

<br />I am very happy to participate in this...

Mysql sorting and paging (order by & limit) and existing pitfalls

Sorting query (order by) In e-commerce: We want t...

The reason why MySQL uses B+ tree as its underlying data structure

We all know that the underlying data structure of...