Several things to note when making a web page

Several things to note when making a web page
--Homepage backup
1.txt text
2. Scan the image
3. PSD design original picture (including AI, Flash, Banner, etc.)
4. htm web page file
5. htm_old* Old web page file backup--html directory structure
1. Open the site management window of the web page layout software Dreamweaver and create subdirectories according to the column content;

2. Create an independent images directory in each main directory, and do not store all files in the root directory;
3. All folder names and file names should be in lowercase letters, and the English file names should correspond to the Chinese meanings. --HTML source code
1. Character set setting: The Chinese version uses GB simplified code gb2312, and the English version uses iso-8859-1 character set;
2. Each page should have a title <title>. Different pages should have different titles according to their topics.
3. Foreign companies should add <meta> fields to their homepages to facilitate search engine searches (such as description, keyword);
4. Include the length, width and alt attributes (comment text) of all icons <img>. --Application of tables
1. Do not put the entire page in one table, try to split it into multiple tables;

2. The nesting level of tables should be as small as possible;
3. Use as few layers as possible if tables can be used for positioning. --Use frames
Avoid hiding column boundaries, which may cause some column contents to be hidden as well. --text
1. Use CSS to define font size and line spacing (it is recommended to use the "external link" method, make the CSS settings into a separate file, and call it in each page);
2. Avoid text errors and content placement errors (subject to customer information and production requirements);
3. Leave two spaces at the beginning of each line of Chinese text. --For pictures with rich colors or gradients (such as product pictures, etc.), it is recommended to use the JPG format; for pictures with monotonous colors (such as LOGOs, text buttons, etc.), it is recommended to use the GIF format. --Link
1. There should be no wrong links or images that cannot be exported (including errors caused by inconsistent file names or incorrect paths);
2. All secondary pages contain a link back to the home page. --Effect and speed
1. Web pages should be kept small in size, and oversized files should be divided into several pages;
2. Reasonably compress graphic files without affecting the image effect. --Browser compatibility takes into account both IE and Netscape browsers and multiple resolutions to avoid typesetting errors. --Others: Confirm that the company profile contains all relevant information about the company, including mailing address, phone number, E-mail and contact person, etc.

<<:  Setting up Docker proxy under CentOS 7 (environment variable configuration of Systemd service under Linux)

>>:  Table setting background image cannot be 100% displayed solution

Recommend

Design a data collector with vue

Table of contents Scenario Core Issues Status mon...

10 key differences between HTML5 and HTML4

HTML5 is the next version of the HTML standard. M...

How to modify the contents of an existing Docker container

1. Docker ps lists containers 2. Docker cp copies...

Essential knowledge for web development interviews and written tests (must read)

The difference between inline elements and block-...

How to configure MGR single master and multiple slaves in MySQL 8.0.15

1. Introduction MySQL Group Replication (MGR for ...

Eight rules for effective web forms

If you're collecting information from your us...

MySQL insert json problem

MySQL 5.7.8 and later began to support a native J...

Detailed tutorial on installing Prometheus with Docker

Table of contents 1. Install Node Exporter 2. Ins...

Shell script settings to prevent brute force ssh

The shell script sets access control, and the IP ...

Understanding what Node.js is is so easy

Table of contents Official introduction to Node.j...

Some thoughts and experience sharing on web page (website) design and production

First, before posting! Thanks again to I Want to S...

Analysis of the principles of Mysql dirty page flush and shrinking table space

mysql dirty pages Due to the WAL mechanism, when ...

Docker installation and deployment example on Linux

After reading the following article, you can depl...

Parsing the commonly used v-instructions in vue.js

Table of contents Explanation of v-text on if for...

Before making a web page, let’s take a look at these so-called specifications

This article has compiled some so-called specific...