Home Web Front-end HTML Tutorial HTML web page hyperlink tag_HTML/Xhtml_web page production

HTML web page hyperlink tag_HTML/Xhtml_web page production

May 16, 2016 pm 04:44 PM
&quot document mark Web page Link page

HTML web page hyperlink tag learning tutorial
Attributes of link tags
Links are one of the most important elements in a web page and the soul of a website. A website is composed of multiple pages, and the pages rely on links to determine the mutual navigation relationship. Each web page has a unique address, which is called url (Uniform Resource Locator: Universal Resource Identifier). Enter http://www.jb51.net in the address bar and press Enter. The main page of the Script House website will open. As you can see, there are multiple columns, multiple news items, etc. on the page. The different columns at the top are text links. Although the
link tag occupies an irreplaceable position in website design and production, there is only one tag, and that is the tag. The link applications introduced on this site are all based on the tag.
The attributes of the link tag are shown in the table below
Attribute Description href specifies the link address name names the link title gives the link prompt text target specifies the target window of the link accesskey link hotkey
About the path
Each file has its own storage location and path. Understanding the path relationship between a file and the file to be linked is the foundation for creating a link. url—Uniform Resource Locator, refers to the independent address that each website has. Every web page under the same website belongs to the same address, but when creating a web page, it is neither possible nor necessary to enter the complete address for each link. We only need to determine the relative path relationship between the current document and the site root directory. Therefore links can be divided into the following three types: Absolute path
such as http://www.jb51.net Relative path
such as news/default.htm root path
Such as /website/news/default.htm
Before understanding these three address forms, you must first understand two other concepts: internal links and external links
Internal and external are relative to the site folder. If the link points to a file within the site folder, it is an internal link. If the link points outside the site folder, it is called an external link. When adding external links, the absolute address mentioned below will be used; when adding internal links, the root directory relative address and file relative address mentioned below will be used.
These three types of links are introduced below:

Absolute path


Absolute path provides a complete path to the file, including adapted protocols, such as http ,Ftp,rtsp, etc. Common ones are:


http://www.sohu.com


ftp://202.136. 254.1


When linking to files on other websites, absolute links must be used. Relative paths


Relative links are best for internal links on a website. As long as they are under the same website, even if they are not in the same directory, relative links are very suitable. File relative addresses are an ideal form of writing internal links. Relative addresses are free to build links between files as long as they are within a site folder. This form of address takes advantage of the relative relationship between the two files that build the link and is not affected by the location of the server where the site folder is located. This form of writing therefore omits the same part of the absolute address. The advantage of this is that when the server address where the site folder is located changes, all internal links of the folder (if this address form is used) will not cause problems.


The method of using relative links is: If linking to the same directory, just enter the name of the document to be linked. To link to a file in a lower-level directory, just enter the directory name, then add "/" and then enter the file name. If you want to link to a file in the upper-level directory, enter ".../" first, then enter the directory name and file name. Root path


Root relative addresses are also suitable for creating internal links, but in most cases, this form of address is not recommended. It is used in the following situations: When the site is very large and is hosted on several servers When several sites are placed on one server at the same time


The writing form of the relative address of the root directory is also very simple. First, it starts with a slash, which represents the root directory, then the folder name is written, and finally the file name is written. The root path starts with "/ "Start, then the directory name under the root directory.
#p#
Make internal links
The so-called internal links refer to the link relationships between different html pages within the same website. When establishing internal links on a website, consideration should be given to making the links have a clear navigation structure so that users can easily find the HTML files of the required content.
Next we create three pages. In the first 8-1.htm page, create links to the two pages 8-1-1.htm and 8-1-2.htm, and add them to the two pages. Create a link back to the 8-1.htm page from each linked page. The directory relationship of the three pages is as follows:
8-1.htm and 8-1-1.htm are stored in the root directory of the website, and 8-1-2.htm is stored in the test directory. Basic syntax
Link textExplanation of syntax
Specify the address through the href attribute, File_name is the path of the file to be linked, and "link text" is the text content clicked by the mouse. File example: 8-1.htm
Create two links through the tag, linking to two other html pages respectively.
01
02
03
04
05
06
07 Create internal links
08
09
10

Mainstream web design software


11

At present, web page technology has entered a new stage. Today's web pages are no longer a collection of pictures and boring text. What people are now pursuing is the dynamic effect and interactivity of web pages. Macromedia's three musketeers of web design software, Dreamweaver, Flash, and Fireworks, are outstanding representatives of interactive web design. Its latest version, mx 2004 inherits the advantages of the previous version and further integrates functions, which is very suitable for the needs of web design and website construction.


12
Web page production software Dreamweaver mx 2004
13

14 Web animation software Flash mx 2004
15
16 File description
Line 12 defines the link to the sibling page of 8-1-1.htm, and line 14 defines the link to the 8-1-2.htm page in the test directory. File example: 8-1-1.htm
This file is the "Webpage Production Software Dreamweaver mx 2004" page, and a link back to the 8-1.htm page is established through the tag.
01
02
03
04
05
06
07 One of the internal link files
08
09
10

Dreamweaver mx 2004


11 Dreamweaver mx As a representative of web design software, 2004 has two core functions: site management and page production. If you also have the ideal of dream weaving, then this software is undoubtedly the best way to help you realize your dream. Complete visual editing, excellent code control, complete site planning and management, and extraordinary dynamic effect design all provide designers with a convenient way. The mx version of the software further integrates dynamic website and traditional static page functions, which undoubtedly provides more implementation methods for making websites.
12


13
Return
14
15 File description
Line 13 defines the link to the same level page of 8-1.htm. File example: 8-1-2.htm
This file is the "Web animation software Flash mx 2004" page, and a link back to the 8-1.htm page is established through the tag.
01
02
03
04
05
06
07 Internal Link File 2
08
09
10

Flash mx 2004


11 Flash mx As a representative of web vector interactive animation software, 2004 provides three major functions: graphic drawing, animation production and interaction. Once you master the core of this software, you will have the ability to act as a flash user while surfing the Internet. More and more personal and commercial websites use Flash technology, advertising banners, animated titles, MTV, and interactive games. The broad applications provide a broad development platform for Flash learners to learn Flash. mx 2004 software is an even more tempting process.
12


13
Return
14
15 File description
Line 13 defines the link to the previous page of 8-1.htm.
#p#
Set the target window of the link
After clicking the link, the default browser window is the original window. We can specify the target window opened by this link, such as a new window, etc. Basic syntax Link textSyntax explanation
Define the target window through target. The value of value is as shown in the following table. Attribute value Description _parent Opens in the previous window. Frames that generally use framing often use _blank to open in a new window and _self to open in the same frame or window. This generally does not need to be set _top Open in the entire window of the browser, ignoring any frames. File example: 8-2.htm
Set the target window of the link through the target attribute.
01
02
03
04
05
06
07 Link target window
08
09
10

Mainstream web design software


11 At present, web page technology has entered a new stage. Today's web pages are no longer a collection of pictures and boring text. What people are now pursuing is the dynamic effect and interactivity of web pages. Macromweaver's three musketeers of web design software, Dreamweaver, Flash, and Fireworks, are outstanding representatives of interactive web design. Its latest version, mx 2004 inherits the advantages of the previous version and further integrates functions, which is very suitable for the needs of web design and website construction.


12 Web page production software Dreamweaver mx 2004
13

14 Web animation software Flash mx 2004
15
16 File Description
Line 12 defines the link page to be displayed in the original window, and line 14 defines the link page to be displayed in the new window.
#p#
Create bookmark link
When browsing a page, if the page has a lot of content and the page is too long, you need to keep dragging the scroll bar while browsing, which is very inconvenient. If you want to find specific content, it is even more inconvenient. At this time, if a table of contents can be created on this web page or another page, the viewer can automatically jump to the corresponding position of the web page for reading by clicking on an item in the catalog. It should be very convenient, and it can also be set in the page. Define a link such as "Return to Home Page". This is called a bookmark link.
There are two steps to establishing a bookmark link: one is to create a bookmark, and the other is to create a link for the bookmark.
Let’s create a software introduction page containing the content of the Three Musketeers of web design, and create a bookmark for each software. This bookmark is the location to be jumped to later. In other words, this bookmark determines the link guidance basis within a page. Basic syntax TextFile example: 8-3.htm
Create bookmark links for the three paragraphs of title text in the page

.
01
02
03
04
05
06
07 Create bookmark link
08
09
10

Mainstream web design software


11

Dreamweaver mx 2004


12 Dreamweaver mx As a representative of web design software, 2004 has two core functions: site management and page production. If you also have the ideal of dream weaving, then this software is undoubtedly the best way to help you realize your dream. Complete visual editing, excellent code control, complete site planning and management, and extraordinary dynamic effect design all provide designers with a convenient way. The mx version of the software further integrates dynamic website and traditional static page functions, which undoubtedly provides more implementation methods for making websites.
13


14

Flash mx 2004


15 Flash mx As a representative of web vector interactive animation software, 2004 provides three major functions: graphic drawing, animation production and interaction. Once you master the core of this software, you will have the ability to act as a flash user while surfing the Internet. More and more personal and commercial websites use Flash technology, advertising banners, animated titles, MTV, and interactive games. The broad applications provide a broad development platform for Flash learners to learn Flash. mx 2004 software is an even more tempting process.
16


17

Fireworks mx 2004


18 Fireworks mx As a representative of web image design software, 2004 has inherited the graphics drawing and page special effects functions of the previous version, while also greatly developing the bitmap image processing functions. This undoubtedly gives this software greater capital to challenge Photoshop. , and its many applications in web design are unmatched by any software. With Dreamweaver The integration of mx 2004 has already played and continues to play an indispensable role in the professional website image design process.
19


20
21 File Description
Lines 11, 14, and 17 respectively define the bookmark names dw, fl, and fw of the 3 paragraph title text.
#p#
Link bookmarks in the same page
Next we will create links for the 8-3.htm we created. We hope to create 3 links at the beginning of the page, linking to each software introduction position. Basic syntax Text linkGrammar explanation
bookmark_name is the bookmark name just defined. File example: 8-4.htm
Create 3 links to the bookmark positions of the three paragraphs of title text in

on the page.
01
02
03
04
05
06
07 Bookmark linked to the same page
08
09
10

Mainstream web design software


11 Dreamweaver mx 2004
12 Flash mx 2004
13 Fireworks mx 2004
14

Dreamweaver mx 2004


15 Dreamweaver mx As a representative of web design software, 2004 has two core functions: site management and page production. If you also have the ideal of dream weaving, then this software is undoubtedly the best way to help you realize your dream. Complete visual editing, excellent code control, complete site planning and management, and extraordinary dynamic effect design all provide designers with a convenient way. mx The 2004 version of the software further integrates dynamic website and traditional static page functions, which undoubtedly provides more implementation methods for making websites.
16


17

Flash mx 2004


18 Flash mx As a representative of web vector interactive animation software, 2004 provides three major functions: graphic drawing, animation production and interaction. Once you master the core of this software, you will have the ability to act as a flash user while surfing the Internet. More and more personal and commercial websites use Flash technology, advertising banners, animated titles, MTV, and interactive games. The broad applications provide a broad development platform for Flash learners to learn Flash. mx 2004 software is an even more tempting process.
19


20

Fireworks mx 2004


21 Fireworksmx As a representative of web image design software, 2004 has inherited the graphics drawing and page special effects functions of the previous version, while also greatly developing the bitmap image processing functions. This undoubtedly gives this software greater capital to challenge Photoshop. , and its many applications in web design are unmatched by any software. With Dreamweaver The integration of mx 2004 has already played and continues to play an indispensable role in the professional website image design process.
22


23
24 File Description
Lines 11, 12, and 13 define bookmark links to the text of three paragraph titles respectively.
#p#
Link to bookmarks in other pages
Between pages, you can also complete the process of jumping to a certain location on another page. This requires specifying the linked page and the linked bookmark location. Basic syntax Text linkGrammar explanation
File_name is the page path to jump to, bookmark_name is the defined bookmark name. File example: 8-5.htm
Create a new page, which contains 3 links, respectively linking to the location of the bookmark of the three paragraphs of title text in the page 8-4.htm.
01
02
03
04
05
06
07 Bookmarks linking to other pages
08
09
10

Mainstream web design software


11 At present, web page technology has entered a new stage. Today's web pages are no longer a collection of pictures and boring text. What people are now pursuing is the dynamic effect and interactivity of web pages. Macromedia's three musketeers of web design software, Dreamweaver, Flash, and Fireworks, are outstanding representatives of interactive web design. Its latest version, mx 2004 inherits the advantages of the previous version and further integrates functions, which is very suitable for the needs of web design and website construction.


12 Dreamweaver mx 2004
13 Flash mx 2004
14 Fireworks mx 2004
15
16 File description
Lines 12, 13, and 14 respectively define bookmark links to the three paragraph title text in the 8-4.htm page.
#p#
External link
The so-called external link refers to the link relationship between jumping to the outside of the current website and pages or other elements in other websites. This kind of link generally requires writing an absolute link address.
When making external links, use URL uniform resource locators to locate World Wide Web information. This method can describe the location of the information concisely, clearly, and accurately. The most common url format is "http://", and other formats are shown in the table. URL format
Service URL format Description www http:// Enter the World Wide Web site Ftp ftp:// Enter the file transfer server News news:// Start news discussion group Telnet telnet:// Start Telnet mode Gopher gopher:// Access a Gopher server Email mailto:// Start email
Link to external website
Commonly used friendly links on the page can often be clicked to visit other people's websites to achieve the purpose of exchanging information with each other. Here's how to create links to external websites. Basic syntax Text link Grammar explanation
What is written after "http://" is the address of the website. File example: 8-6.htm
Create links to external websites.
01
02
03
04
05
06
07 Links to external site
08
09
10 Link to Script House website
11
12 File description
Line 10 defines the link to the Script House website.
#p#
Send E-mail
In the html page, you can create an E-mail link. When the viewer clicks the link, the system will activate the default email for sending E-mail. In the Windows system, if the user has set up email software, such as Outlook, Outlook Express, etc., clicking the E-mail link in the browser will automatically open a new email window, and the address bar will automatically add the email address in the E-mail link. Basic syntax Text link text link Text link Text linkGrammar explanation
where a@b.c is the email address, and the following parameters are as shown in the table below. Email parameters
Parameter Description subject Email subject cc Cc recipient bcc Bcc recipient
If you want to write multiple parameters at the same time, use the "&" symbol to separate the parameters, such as:
text link File example: 8-7.htm
Create an email link.
01
02
03
04
05
06
07 Send email
08
09
10 Letter to the author
11

12 Comments and Suggestions
13
14 File description
Line 10 defines the default email link, and the link on line 12 sets the email subject "Comments and Suggestions", as well as the email addresses for CC and BCC after sending the email.
#p#
Link FTP
The Internet is rich in resources. Through the file transfer protocol Ftp, you can obtain various free software and other files without leaving home. Ftp stands for "File Transfer Protocol". A protocol is a language that enables computers to communicate with each other. Ftp enables files and folders to be transferred publicly over the Internet. In some cases, you will need permission from your network computer administrator to log in and access files on your computer. But often you'll find that you can use Ftp to access a network or server without having an account on that computer or being an authorized password holder. These anonymous Ftp servers can contain a wide range of data that is publicly available via Ftp. Basic syntax Text linkGrammar explanation
What is written after "ftp://" is the address of the Ftp host. File example: 8-8.htm
Create an email link.
01
02
03
04
05
06
07 Link Ftp Host
08
09
10 Peking University Ftp Site
11
12 File description
Line 10 defines the Ftp host address as the Ftp host of Peking University.
#p#
Link Telnet
Telnet is also one of the most important and widespread applications on the Internet. Remote login Telnet refers to a computer remotely connecting to another computer and running its own system program on the remote computer, thereby sharing the computer network system. Software and hardware resources. Basic syntax Text linkGrammar explanation
What is written after "Telnet://" is the address of the Telnet site. File example: 8-9.htm
Create a Telnet link.
01
02
03
04
05
06
07 Link Telnet
08
09
10 Peking University Weiming Station
11
12 File Description
Line 10 defines the Telnet site address as Peking University Weiming Station. Among them, 162.105.203.245 is the site address and 23 is the port number.
#p#
Link to Gopher
Before the advent of www, Gopher software was the most important search tool on the Internet, and the Gopher site was also the most important site. After the emergence of www, Gopher lost its former glory. Despite this, Gopher is still popular today because Gopher sites can accommodate large amounts of information for users to query. Basic syntax Text linkGrammar explanation
What is written after "Gopher://" is the address of the Gopher site. File example: 8-10.htm
Create Gopher link.
01
02
03
04
05
06
07 LinkGopher
08
09
10 Gopher site
11
12 File description
Line 10 defines the address of the Gopher site.
#p#
Link to News group
The New news group is composed of thousands of news servers distributed around the world. It can change messages at any time. Any message sent to the news group server can be spread around the world in a few minutes. A newsgroup is a collection of emails posted by individuals to a news server. Thousands of newsgroups can be created on a single computer. Every visitor can find a newsgroup on almost any topic. While some newsgroups are monitored, most are not. For monitored newsgroups, their owners can check posted messages, ask questions, or delete inappropriate messages, etc. Anyone can post messages to newsgroups. Newsgroups require no membership or membership fees. Basic syntax Text linkGrammar explanation
"News://" What is written next is the address of the New server. File example: 8-11.htm
Create a New newsgroup link.
01
02
03
04
05
06
07 Link News group
08
09
10 News News Group
11
12 File description
Line 10 defines the address of the New news group server.
#p#
Download file
If you want to create a link to download a file, just enter the location of the file in the link address. When the browser user clicks the link, the browser will automatically determine the type of file to handle different situations. Basic syntax Text linkGrammar explanation
"File_url" represents the path where the file is located. You can write a relative path or an absolute path. File example: 8-12.htm
Create a download link for the file.
01
02
03
04
05
06
07 Download file
08
09
10 Download software
11
12 File description
Line 10 defines the download address of the Word Recovery software.
#p#
Script link
In the link statement, you can use scripts to implement functions that cannot be accomplished by the HTML language. The following uses JavaScript script as an example to illustrate the use of script links. Basic syntax Text linkSyntax explanation
In JavaScript: what is written next is the specific script. File example: 8-13.htm
Achieve the effect of closing the browser window through script links.
01
02
03
04
05
06
07
10 Close window
11
12 File Description
Line 10 defines the JavaScript script.
#p#
Empty link
In the link, you can use the # symbol to achieve an empty link. The so-called empty link means that after pointing to the link, the mouse becomes a hand line, but after clicking the link, it still stays on the current page. Basic syntax Text linkFile example: 8-14.htm
Implement empty link.
01
02
03
04
05
06
07 Empty link
08
09
10 Empty link
11
12 File Description
Line 10 defines an empty link.

Statement of this Website
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

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to send web pages to desktop as shortcut in Edge browser? How to send web pages to desktop as shortcut in Edge browser? Mar 14, 2024 pm 05:22 PM

How to send web pages to the desktop as a shortcut in Edge browser? Many of our users want to display frequently used web pages on the desktop as shortcuts for the convenience of directly opening access pages, but they don’t know how to do it. In response to this problem, the editor of this issue will share the solution with the majority of users. , let’s take a look at the content shared in today’s software tutorial. The shortcut method of sending web pages to the desktop in Edge browser: 1. Open the software and click the "..." button on the page. 2. Select "Install this site as an application" in "Application" from the drop-down menu option. 3. Finally, click it in the pop-up window

How to download links starting with 115://? Download method introduction How to download links starting with 115://? Download method introduction Mar 14, 2024 am 11:58 AM

Recently, many users have been asking the editor, how to download links starting with 115://? If you want to download links starting with 115://, you need to use the 115 browser. After you download the 115 browser, let's take a look at the download tutorial compiled by the editor below. Introduction to how to download links starting with 115:// 1. Log in to 115.com, download and install the 115 browser. 2. Enter: chrome://extensions/ in the 115 browser address bar, enter the extension center, search for Tampermonkey, and install the corresponding plug-in. 3. Enter in the address bar of 115 browser: Grease Monkey Script: https://greasyfork.org/en/

How to get the WeChat video account link? How to add product links to WeChat video account? How to get the WeChat video account link? How to add product links to WeChat video account? Mar 22, 2024 pm 09:36 PM

As part of the WeChat ecosystem, WeChat video accounts have gradually become an important promotion tool for content creators and merchants. Getting links to video accounts on this platform is crucial for sharing and disseminating content. The following will introduce in detail how to obtain the WeChat video account link and how to add product links to the video account to improve the dissemination effect of the content. 1. How to get the WeChat video account link? After posting a video on your WeChat video account, the system will automatically create a video link. Authors can copy the link after publishing to facilitate sharing and dissemination. After logging in to your WeChat video account, you can browse the homepage of your video account. On the home page, each video is accompanied by a corresponding link so you can copy or share it directly. 3. Search video account: Enter the video account name in the WeChat search box

What to do if the 0x80004005 error code appears. The editor will teach you how to solve the 0x80004005 error code. What to do if the 0x80004005 error code appears. The editor will teach you how to solve the 0x80004005 error code. Mar 21, 2024 pm 09:17 PM

When deleting or decompressing a folder on your computer, sometimes a prompt dialog box "Error 0x80004005: Unspecified Error" will pop up. How should you solve this situation? There are actually many reasons why the error code 0x80004005 is prompted, but most of them are caused by viruses. We can re-register the dll to solve the problem. Below, the editor will explain to you the experience of handling the 0x80004005 error code. Some users are prompted with error code 0X80004005 when using their computers. The 0x80004005 error is mainly caused by the computer not correctly registering certain dynamic link library files, or by a firewall that does not allow HTTPS connections between the computer and the Internet. So how about

How to transfer files from Quark Cloud Disk to Baidu Cloud Disk? How to transfer files from Quark Cloud Disk to Baidu Cloud Disk? Mar 14, 2024 pm 02:07 PM

Quark Netdisk and Baidu Netdisk are currently the most commonly used Netdisk software for storing files. If you want to save the files in Quark Netdisk to Baidu Netdisk, how do you do it? In this issue, the editor has compiled the tutorial steps for transferring files from Quark Network Disk computer to Baidu Network Disk. Let’s take a look at how to operate it. How to save Quark network disk files to Baidu network disk? To transfer files from Quark Network Disk to Baidu Network Disk, you first need to download the required files from Quark Network Disk, then select the target folder in the Baidu Network Disk client and open it. Then, drag and drop the files downloaded from Quark Cloud Disk into the folder opened by the Baidu Cloud Disk client, or use the upload function to add the files to Baidu Cloud Disk. Make sure to check whether the file was successfully transferred in Baidu Cloud Disk after the upload is completed. That's it

How to mark minesweeper? -How to change the difficulty of Minesweeper? How to mark minesweeper? -How to change the difficulty of Minesweeper? Mar 18, 2024 pm 06:34 PM

How to mark minesweeper? First, we need to familiarize ourselves with the marking method in Minesweeper. Normally, there are two common marking methods in Minesweeper games: flag marking and question mark marking. The flag mark is used to indicate that there are mines in the block and is a deterministic mark; while the question mark mark indicates that there may be mines in the block, but it is not deterministic. These two marking methods play an important role in the game, helping players to infer which blocks may contain mines, so as to effectively proceed to the next step. Proficient use of these marking methods can improve the player's success rate in the minesweeper game and reduce the risk of stepping on mines. Therefore, when playing the minesweeper game, if the player has mastered the flag mark and question mark mark, when the player is not sure whether there is a mine in a certain square, he can use the question mark mark to mark it.

What is hiberfil.sys file? Can hiberfil.sys be deleted? What is hiberfil.sys file? Can hiberfil.sys be deleted? Mar 15, 2024 am 09:49 AM

Recently, many netizens have asked the editor, what is the file hiberfil.sys? Can hiberfil.sys take up a lot of C drive space and be deleted? The editor can tell you that the hiberfil.sys file can be deleted. Let’s take a look at the details below. hiberfil.sys is a hidden file in the Windows system and also a system hibernation file. It is usually stored in the root directory of the C drive, and its size is equivalent to the size of the system's installed memory. This file is used when the computer is hibernated and contains the memory data of the current system so that it can be quickly restored to the previous state during recovery. Since its size is equal to the memory capacity, it may take up a larger amount of hard drive space. hiber

How to mark multiple locations on Baidu Maps How to mark multiple locations How to mark multiple locations on Baidu Maps How to mark multiple locations Mar 15, 2024 pm 04:28 PM

There are many functions above, especially for maps that can mark multiple places. When we know some places, we will definitely use some punctuation functions, so that we can bring you a variety of different aspects. Some of the functions you mark will produce distance differences, that is, you can know how far away they are. Of course, some names and detailed information of the above places will also be displayed. However, many netizens may not be familiar with some of the above. The content information is not very clear, so in order to allow everyone to make better choices in various aspects, today the editor will bring you some choices in various aspects, so friends who are interested in ideas, If you are also interested, come and give it a try. Standard

See all articles