Home > Article > Web Front-end > What is the extension of static web page files?
The extension of static web page files can be: 1. [.htm]; 2. [.html]; 3. [.shtml]; 4. [.xml] Extensible Markup Language.
In website design, web pages in pure HTML (an application under Standard Universal Markup Language) format are often called "static web pages", and static web pages are For standard HTML files, their file extensions are usually .htm, .html, or .shtml, .xml (Extensible Markup Language), etc. can also be used as suffixes.
HTM, HTML: represents Hypertext Markup Language (an application under Standard Universal Markup Language), which is the description language of WWW and a necessary programming language for web page production; .htm,. html is often used as a web page file extension.
SHTML: is an application under the Standard Universal Markup Language. It contains text containing commands on the embedded server side. The server will complete the SHTML document before being sent to the browser. read, analyze and modify.
XML: Extensible Markup Language, a subset of Standard Generalized Markup Language, is a markup language used to mark electronic documents to make them structured; it is designed for transmission and store data. It can be used as a static web extension.
Characteristics of static web pages
1. Static web pages Each web page has a fixed URL, and the web page URL starts with .htm,. Common forms such as html and .shtml are suffixed and do not contain "?".
2. Once the web page content is published to the website server, regardless of whether there is a user access, the content of each static web page is stored on the website server. In other words, the static web page is actually stored on the website server. Files on the server, each web page is an independent file.
3. The content of static web pages is relatively stable, so it is easy to be retrieved by search engines.
4. Static web pages do not have the support of a database and require a large workload in website production and maintenance. Therefore, it is difficult to rely solely on static web page production when the website has a large amount of information.
5. Static web pages are less interactive and have greater limitations in functionality.
6. The page browsing speed is fast. There is no need to connect to the database during the process. The page opening speed is faster than the dynamic page.
7. The burden on the server is reduced, the workload is reduced, and the cost of the database is reduced.
The above is the entire content of this article, I hope it will be helpful to everyone's study. For more exciting content, you can pay attention to the relevant tutorial columns of the PHP Chinese website! ! !
The above is the detailed content of What is the extension of static web page files?. For more information, please follow other related articles on the PHP Chinese website!