Web page
2.1 Topics (title)
The title element is the only element in the header of the file that must appear, and it can only appear in the file header. The format of the title element is:
file Title
Title The title of the HTML file, is a summary of the contents of the file. A good topic should enable the reader to determine the approximate content of the document. The title of the file is not normally displayed in the text window, and the name of the window appears. In addition to identifying a window, title is used as either a bookmark or a default filename when a homepage is saved to bookmarks or files.
There is no limit to the length of the title, but the long title will cause the line to be broken, and in general it should not be longer than 64 characters. Because the role of title is to mark the contents of the file, so too short title is also undesirable, such as: Introduction This topic, the reader can not judge according to it what this article describes. A good example of this is:
a Introduction to HTML 2.0
Other elements, such as
This is a searchable index. Enter search keywords: ,, can also appear in the header element. These elements are not required, and are not commonly used. The use of these elements and their meanings can be referenced in the literature.
The following is one of the simplest HTML files
the simplest HTML file
This is the My-i-i-HTML file.
§2.2 title (HN)
There are 6 kinds of heading elements, H1, H2,... h6, used to represent various topics in the article. The smaller the title number, the larger the font. In general, the browser explains the title as follows:
H1 bold, oversize font, centered, with two lines of blank line up and down.
H2 bold, large font, up and down each one to two lines of blank lines
H3 Bold (italic), large font, the left side of the miniature into, up and down empty lines
H4 bold, plain font, more indented than H3, a blank line above
H5 Bold (italic), same indent as H4, top blank line
H6 bold, with the same indentation as the body, a blank line above
Netscape 2.0 is the explanation for HN, all boldface, font is getting smaller.
HN can have alignment attributes, align=#, #表示left title Center left center title right
Example:
chapter 2
The example of HN and its output are given below:
today is fine!
this is fine!
today is fine!
this is fine!
today is fine!
this is fine!
today is fine!
this is fine!
today is fine!
this is fine!
today is fine!
this is fine!
§2.3 Section
HTML browser is based on the window, the user can change the size of the display area at any time, so the HTML will be multiple spaces and carriage return equivalent to a space, which is different from most word processors. The fragmentation of HTML is entirely dependent on the segmented element
. For example, the following two sections of source files have the same output.
this is a level two Heading
Paragraphy one
paragraph two
... ... ... ... ... ... ... ... ... ...
this is a level two heading
Paragraph one
Paragraph two
can also have a variety of properties, the more commonly used properties are:
aligh=# #可以是left, Center,right, whose meaning is the same as above.
Example
this is a centered paragraph
when there is a graphic in the HTML file, the graphic may occupy one end of the window, and there may be a larger space around the graphic. At this point,
with no clear attribute may cause the contents of the article to appear in that blank area. To ensure that the next paragraph appears below the graphic, you can use the clear property. The Clear property means:
Clear=left The next section shows a blank area at the left edge
Clear=right The next section shows a blank area at the right edge.
Clear=all There's no other content on either side of the next section.
List of §2.4 lists
The list is used to enumerate the facts, and the commonly used list has 3 forms, the unordered list (unordered list), the ordered list (ordered list) and the definition list.
2.4.1 unordered list (UL)
Unordered list starts with (UL), each list item uses
Guide, finally is , note that the list entry does not need the end link sign . The output is indented for each list entry and is marked with a black dot. Cases:
source files
Output is
Today
Tommorow
2.4.2 ordered list
An ordered list is an example of an instance and its output, as opposed to an unordered list, except that the list entry is digitally marked at the time of output:
- today
- tommorow
The output is:
1.Today
2.Tommorow
2.4.3 Definition List
Defines the occasion for a brief description of a list entry, with the
start, the list entry is guided by
-
, and its description is guided by
-
.
-
item 1
-
the Definition of item 1
-
item 2
-
definition or explaination of item 2
The output is:
Item 1
The definition of item 1
Item 2
Definiton or explaination of item 2
2.4.4 Change the entry mark
1. Change unordered list entry tags
Unordered list output, each currently has a black dot, the user can modify the item's tag in type Order. Type can be disc solid dot Cirde circle square solid Square Dot
The output is:
One
0TWO
THREE
2. Change ordered list entry mark
The default value for ordered list entry tokens is Arabic numerals, which can be modified with the type attribute. Method is #=a, uppercase
A, lowercase letters
I, capital Roman numerals
I, lowercase roman numerals
L, default, Arabic numerals
- one-one
- ONE-TWO
A.one-one
B.one-two
- one-one
- ONE-TWO
A.one-one
B.one-two
- one-one
- ONE=TWO
Ⅰ.one-one
Ⅱ.one-two
- one-one
- ONE-TWO
I.one-one
Ii. One-Two
- one-one
- ONE-TWO
1.one-one
2.one-two
3. Change the order list entry of the beginning of the number
The number of entries in an ordered list is by default starting from 1, which can be modified with the Start property. Method is
#是条目起始号
- one-one
- one-two
- two-one
- two-one
E.one-one
F.one-two
10.two-one
Xi. Two-two
Nesting of 2.4.5 lists
Various lists can be nested together, and each list entry can be a separate list. For each nested layer, the output of the manifest entry will be indented more greatly. Please refer to the example above.
§2.5 Pre-typesetting text
HTML output is based on the window, so the HTML file in the output is to be reflow, if you do not need to rearrange the content, you can use ...
to inform the browser. The browser in the output, to this part of the content is almost unmodified output, the output of the font telex typewriter font. Early HTML specifications stipulate that elements formatted for output cannot appear in the pre-typesetting area. such as HN, Netscapr2.0 when encountered in the pre-typesetting elements, allow the other elements.
Please use the Your card.
VISA Master
here is a order form.
Your Card
VISA Master
This is the order form.
Fax
Air Mail
§ 2.6 Block references
A block reference indicates that the content is a reference. In the browser to block references to the interpretation of the general is left and right indent, the top and bottom each have a blank line, some browsers also use italic character.
§2.7 Center
Many elements have alignment attributes, such as HN, p, and so on. You can also sign the
... directly with the center link
wonderful!!
This must is my dream.
wonderful!!
This must is my dream.