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

Example code of CSS layout at both ends (using parent's negative margin)

Recently, during the development process, I encou...

Practice of Vue global custom instruction Modal drag

Table of contents background Implementation ideas...

Solution to Docker pull timeout

Recently, Docker image pull is very unstable. It ...

The difference and reasons between the MySQL query conditions not in and in

Write a SQL first SELECT DISTINCT from_id FROM co...

The main idea of ​​​​dynamically setting routing permissions in Vue

I have seen some dynamic routing settings on the ...

Solution to MySQL unable to read table error (MySQL 1018 error)

1. Error reproduction I can access the MySQL data...

Summary of the application of decorative elements in web design

<br />Preface: Before reading this tutorial,...

Summary of problems encountered when installing docker on win10 home version

Docker download address: http://get.daocloud.io/#...

How to use mysqldump to backup MySQL data

1. Introduction to mysqldump mysqldump is a logic...

Detailed examples of converting rows to columns and columns to rows in MySQL

mysql row to column, column to row The sentence i...

Summary of things to pay attention to in the footer of a web page

Lots of links You’ve no doubt seen a lot of sites ...