


This article has compiled some webpage production to take a look at these so-called specifications. I hope it will be helpful to everyone. This article has compiled some webpage production . Let’s take a look at these so-called specifications first. I hope it will be helpful to everyone.
01 File naming convention
Principle of file naming: use the fewest letters to achieve the easiest-to-understand meaning.
General file and directory naming convention:
Each directory should contain a default html file, and the file name should be index.htm
The file name should be a combination of lowercase English letters, numbers, and underscores
Try to translate the word into the name in English. For example: feedback (information feedback), aboutus (about us)
Multiple files of the same type are named with English letters and numbers, and letters and numbers are separated by _. For example: news_01.htm. Note that the number of digits is proportional to the number of files. If there are not enough digits, fill them with 0s. For example, there are 200 news items in total, and the 18th item is named news_018.htm.
Picture naming convention:
The name is divided into two parts, the first and the last, separated by underscores.
The header part indicates the general nature of this image. For example: We name the rectangular pictures such as advertisements and decorative patterns placed at the top of the page: banner; we name the iconic pictures: logo; we name the small pictures with no fixed position on the page and with links, button ; We name the pictures in the link column that appear continuously at a certain position on the page and have the same nature: menu; we name the photos used for decoration: pic; we name the pictures without links to indicate titles: title, and so on in accordance with this principle. The tail part of
is used to express the specific meaning of the picture, expressed in English letters. For example: banner_sohu.gif banner_sina.gif menu_aboutus.gif menu_job.gif title_news.gif logo_police.gif logo_national.gif pic_people.jpg pic_hill.jpg.
For two pictures with onmouse effect, add "_on after the original file name. " and "_off" naming.
Other file naming conventions
The naming principle of js is named after the English word of the function. For example: the js file name of the advertising banner is: ad.js
All CGI files have the suffix cgi. The configuration file of all CGI programs is config.cgi
02 Directory structure specification
Principle of directory establishment: Provide the clearest and most convenient access structure with the fewest levels.
The directory name consists of lowercase English letters and underscores. (Refer to the naming convention)
The root directory generally only stores index.htm and other necessary system files
Each main column opens a corresponding independent directory
The images in the root directory are used to store the information required for each page. The public images used, the images directory in the subdirectory store the private images used in this column page
All JS, ASP, PHP and other scripts are stored in the scripts directory under the root directory
All CGI programs are stored in the root directory cgi-bin directory
All CSS files are stored in the root directory style directory
Each language version is stored in a separate directory. For example: Simplified Chinese gb
All flash, avi, ram, quicktime and other multimedia files are stored in the media directory under the root directory
03 Size Specification
Please adjust the size specifications according to your actual situation:
The page standard is produced with a resolution of 800*600, and the recommended size is 766*430px
In principle, the page length should not exceed 3 screens, and the width should not exceed 1 screen
Each standard page is A4 format, that is, 8.5X11 inches
Full-size banner is 468*60px, half-size banner is 234*60px, small banner is 88*31px, and the same is true for 120*90 and 120*60 The standard size of small icons
Each non-home page static page containing images shall not exceed 60K bytes, and the full-size banner shall not exceed 14K
04 Home Page Code Specifications
The key to the code of the home page is the head area. The head area refers to the content between and in the HTML code of the home page.
Logo that must be added to the head area
Company copyright annotation
Web page display character set, for example:
Simplified Chinese:
Traditional Chinese:
English:
Original producer information
Website introduction

在Go语言中,使用第三方库是非常方便的。许多优秀的第三方库和框架可以帮助我们快速地开发应用程序,同时也减少了我们自己编写代码的工作量。但是如何正确地使用第三方库,确保其稳定性和可靠性,是我们必须了解的一个问题。本文将从以下几个方面介绍如何使用第三方库,并结合具体例子进行讲解。一、第三方库的获取Go语言中获取第三方库有以下两种方式:1.使用goget命令首先

学习Python时需要了解的变量命名规范在学习Python编程语言时,一个重要的方面是学习如何正确命名和使用变量。变量是用来存储和表示数据的标识符。良好的变量命名规范不仅能提高代码的可读性,还能减少出错的可能性。本文将介绍一些常用的变量命名规范,并给出相应的代码示例。使用有意义的名字变量名应该具有清晰的含义,能够描述变量所存储的数据。使用有意义的名字可以让其

<p>Windows 系统上的 OneDrive 应用程序允许您将文件存储在高达 5 GB 的云上。OneDrive 应用程序中还有另一个功能,它允许用户选择一个选项,是将文件保留在系统空间上还是在线提供,而不占用您的系统存储空间。此功能称为按需文件。在这篇文章中,我们进一步探索了此功能,并解释了有关如何在 Windows 11 电脑上的 OneDrive 中按需使用文件的各种选项。</p><h2>如何使用 On

Go语言中的反转依赖是一种非常实用的技术,它可以帮助开发者更好地进行软件开发。在本文中,我们将详细介绍什么是反转依赖,并且演示如何在Go语言中使用它来优化软件。一、什么是反转依赖在传统的软件开发中,模块之间存在着依赖关系。一些模块被其他模块所依赖,而另一些模块则依赖于其他模块。这种依赖关系在软件中非常普遍,但同时也会带来很多问题。一旦一个模块的代码发生了变化

如何通过阅读最新PHP代码规范的源代码来理解其背后的设计原则和目标?引言:在编写高质量的PHP代码时,遵循一定的代码规范是非常重要的。通过代码规范,可以提高代码的可读性、可维护性和可扩展性。而对于PHP语言来说,有一份被广泛采用的代码规范,即PSR(PHPStandardsRecommendations)。本文将介绍如何通过阅读最新PHP代码规范的源代码

随着全球化的发展,越来越多的应用程序需要支持多语言,以便吸引更多的用户使用。在Go语言中如何使用国际化呢?本篇文章将介绍Go中如何使用标准库和第三方库来实现国际化。一、Go标准库实现国际化Go标准库提供了一些方法来实现国际化,其中包括:fmt.Sprintffmt.Sprintf可以使用格式化模板来生成字符串,支持多语言格式字符串。在多语言环境下,你可以使用

Go是一种流行的编程语言,可用于构建各种不同类型的网络应用程序。其中,使用HTTP代理是非常常见的应用场景之一。在本文中,我们将探讨如何在Go中使用HTTP代理。什么是HTTP代理?HTTP代理是一种应用程序,它可以允许用户通过代理服务器来发送HTTP/HTTPS请求。通常,代理服务器位于用户和目标服务器之间,可以缓存请求,限制用户访问某些内容等等。使用HT

快速规范代码风格:PyCharm格式化快捷键解析代码的可读性和一致性对于程序员来说非常重要。在遵循一定的代码风格规范的前提下,编写整洁的代码可以使得项目更易于维护和理解。而PyCharm作为一款功能强大的集成开发环境,提供了快捷键来帮助我们快速格式化代码。本文将介绍几个PyCharm中常用的快捷键,以及它们的具体使用方法和效果。1.代码自动缩进(Ctrl


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor
