```The img tag has two main attributes: src and"/> ```The img tag has two main attributes: src and">
search
HomeWeb Front-endFront-end Q&AHow to add pictures to html

How to add pictures to html

Apr 23, 2023 am 10:19 AM

HTML is a markup language used to create text, images, videos and other content in web pages. Pictures are one of the essential elements in web page production. How to correctly add pictures is a skill that every web page producer needs to master.

1. Basic syntax

In HTML, use the img tag to insert pictures. The full name of img is "image", which means picture. The following is the basic syntax of the img tag:

<img  src="/static/imghwm/default1.png" data-src="图片文件路径" class="lazy" alt="How to add pictures to html" >

The img tag has two main attributes: src and alt. src refers to the path of the image file, and alt refers to the text description that will be displayed when the page cannot display the image normally.

Among them, the src attribute must be filled in, while the alt attribute is optional. If the image path is incorrect, the image will not be displayed. If the alt attribute is not set, a string of meaningless text may be displayed on the page where the image cannot be displayed normally.

The image path can be a local path or a network path. The local path refers to the path of the image file stored on the local computer; the network path refers to the path of the image file accessed through the network, such as images downloaded from the Internet.

2. The path of local pictures

The paths of local pictures are divided into absolute paths and relative paths. The absolute path specifies the location of the image in the entire file system, and you need to write the complete path; the relative path is the path description starting from the HTML file, and you only need to write the location of the image relative to the HTML file.

The following are two ways of writing local image paths.

  1. Absolute path

The absolute path refers to the location of the image in the entire file system. Depending on the operating system, the absolute path will be slightly different. In Windows systems, absolute paths start from the drive letter, for example:

C:\Users\Administrator\Pictures\test.jpg

In Mac OS X systems, absolute paths start from the root directory, for example:

/Users/username/Documents/test.jpg

The disadvantages of this approach are , each web page must use the complete file path. If the file storage location changes, the code needs to be modified.

  1. Relative path

The relative path refers to the location of the image relative to the HTML file. The simpler the directory structure, the easier it is to use relative paths. In HTML files, "." represents the directory where the current file is located, and ".." represents the directory above the directory where the current file is located. If the image and the HTML file are in the same directory, relative paths can be used, for example:

<img  src="/static/imghwm/default1.png" data-src="./images/test.jpg" class="lazy" alt="How to add pictures to html" >

If the image is stored in the images folder in the directory where the HTML file is located, the path is "./images/test.jpg".

3. Internet pictures

Internet pictures refer to pictures obtained from the Internet. In HTML, you can use the img tag to insert network images just like local images.

Network images are usually represented by URL (Uniform Resource Locator), which is a string composed of protocol name, host name, file path and file name. For example, the URL to access Baidu pictures is:

https://www.baidu.com/img/bd_logo1.png

Among them, "https://" is the protocol name, indicating that the HTTPS protocol is used for data transmission; "www.baidu.com" is the host name; "img/ bd_logo1.png" is the file path and file name.

When adding network pictures, just copy the URL of the network picture to the src attribute of the img tag, for example:

<img  src="/static/imghwm/default1.png" data-src="https://www.baidu.com/img/bd_logo1.png" class="lazy" alt="How to add pictures to html" >

Network pictures are more convenient, don’t worry about the path problem, as long as the picture If the URL is no problem, you can use the img tag to insert the image directly into the HTML.

4. Image Adaptation

In the process of web page production, a common need is to make the image size adaptive, so that it can have better display effects on different devices and screens. . Commonly used methods include using CSS to set properties such as width, height, and max-width.

  1. Use CSS to set the width and height

The width and height attributes in CSS can set the width and height of the image respectively, for example:

<style>
    img {
        width: 100%;
        height: auto;
    }
</style>

where , setting width to 100% means that the width of the picture will change as the available space changes; setting height to auto means that the height will be automatically adjusted according to the proportion of the width, maintaining the original proportion.

  1. Use CSS to set max-width

Using the max-width attribute can make the image automatically shrink proportionally when it exceeds a certain width, but it will not be smaller than its original size. For example:

<style>
    img {
        max-width: 100%;
        height: auto;
    }
</style>

Among them, max-width is set to 100%, which means that the maximum width of the picture will not exceed its available space and will not exceed the original size. Height is set to auto, which means that the height will be automatically adjusted according to the ratio of the width. , keeping the original proportions.

In short, when adding images to web pages, you must consider issues such as image path, image description, image size and adjustment. As long as you master the basic syntax and common methods, you can flexibly use the img tag in HTML to make the web page more colorful.

The above is the detailed content of How to add pictures to html. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Benefits of React's Strong Community and EcosystemThe Benefits of React's Strong Community and EcosystemApr 29, 2025 am 12:46 AM

React'sstrongcommunityandecosystemoffernumerousbenefits:1)ImmediateaccesstosolutionsthroughplatformslikeStackOverflowandGitHub;2)Awealthoflibrariesandtools,suchasUIcomponentlibrarieslikeChakraUI,thatenhancedevelopmentefficiency;3)Diversestatemanageme

React's Component-Based Architecture: A Key to Scalable UI DevelopmentReact's Component-Based Architecture: A Key to Scalable UI DevelopmentApr 29, 2025 am 12:33 AM

React's componentized architecture makes scalable UI development efficient through modularity, reusability and maintainability. 1) Modularity allows the UI to be broken down into components that can be independently developed and tested; 2) Component reusability saves time and maintains consistency in different projects; 3) Maintainability makes problem positioning and updating easier, but components need to be avoided overcomplexity and deep nesting.

The Size of React's Ecosystem: Navigating a Complex LandscapeThe Size of React's Ecosystem: Navigating a Complex LandscapeApr 28, 2025 am 12:21 AM

TonavigateReact'scomplexecosystemeffectively,understandthetoolsandlibraries,recognizetheirstrengthsandweaknesses,andintegratethemtoenhancedevelopment.StartwithcoreReactconceptsanduseState,thengraduallyintroducemorecomplexsolutionslikeReduxorMobXasnee

How React Uses Keys to Identify List Items EfficientlyHow React Uses Keys to Identify List Items EfficientlyApr 28, 2025 am 12:20 AM

Reactuseskeystoefficientlyidentifylistitemsbyprovidingastableidentitytoeachelement.1)KeysallowReacttotrackchangesinlistswithoutre-renderingtheentirelist.2)Chooseuniqueandstablekeys,avoidingarrayindices.3)Correctkeyusagesignificantlyimprovesperformanc

Debugging Key-Related Issues in React: Identifying and Resolving ProblemsDebugging Key-Related Issues in React: Identifying and Resolving ProblemsApr 28, 2025 am 12:17 AM

KeysinReactarecrucialforoptimizingtherenderingprocessandmanagingdynamiclistseffectively.Tospotandfixkey-relatedissues:1)Adduniquekeystolistitemstoavoidwarningsandperformanceissues,2)Useuniqueidentifiersfromdatainsteadofindicesforstablekeys,3)Ensureke

React's One-Way Data Binding: Ensuring Predictable Data FlowReact's One-Way Data Binding: Ensuring Predictable Data FlowApr 28, 2025 am 12:05 AM

React's one-way data binding ensures that data flows from the parent component to the child component. 1) The data flows to a single, and the changes in the state of the parent component can be passed to the child component, but the child component cannot directly affect the state of the parent component. 2) This method improves the predictability of data flows and simplifies debugging and testing. 3) By using controlled components and context, user interaction and inter-component communication can be handled while maintaining a one-way data stream.

Best Practices for Choosing and Managing Keys in React ComponentsBest Practices for Choosing and Managing Keys in React ComponentsApr 28, 2025 am 12:01 AM

KeysinReactarecrucialforefficientDOMupdatesandreconciliation.1)Choosestable,unique,andmeaningfulkeys,likeitemIDs.2)Fornestedlists,useuniquekeysateachlevel.3)Avoidusingarrayindicesorgeneratingkeysdynamicallytopreventperformanceissues.

Optimizing Performance with useState() in React ApplicationsOptimizing Performance with useState() in React ApplicationsApr 27, 2025 am 12:22 AM

useState()iscrucialforoptimizingReactappperformanceduetoitsimpactonre-rendersandupdates.Tooptimize:1)UseuseCallbacktomemoizefunctionsandpreventunnecessaryre-renders.2)EmployuseMemoforcachingexpensivecomputations.3)Breakstateintosmallervariablesformor

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.