|
Любой текст заключенный между этими скобками игнорируется просмотрщиком.
Пример
<!-- This line text, enclosed in an HTML page, will not print. This line of text, will not print -->
Задает версию HTML, используемую в текущем документе. Команда !DOCTYPE должна быть первой командой в документе. Команда !DOCTYPE является обязательным требованием языка HTML 3.2.
Пример
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
Задание гиперссылки (anchor - анкер). В скобках <A> и </A> может быть текст или рисунок (описание графического файла).
Используя атрибут HREF= команда задает гиперссылку, связанную с текстом или рисунком.
Используя атрибут NAME= команда задает символическую метку внутри документа.
window | Имя активного окна, куда следует загрузить докумет (окно должно быть ранее описано в задании FRAMEs). Если окно с этим именем отсутствует, то открывается новое окно. |
_blank | Закрузка документа в новое окно (без имени). |
_parent | Загрузка документа в "родительское" окно по отношению к текущему. |
_self | Загрузка документа в то же самое окно, откуда он был вызван. |
_top | Загрузка документа в основное окно. |
Примеры
<A HREF="http://www.comapany.com">Это адрес компании.</A> <A HREF="home.html">Ссылка на файл home.html в той же директории.</A> <A TARGET="viewer" HREF="sample.htm">Загрузка в окно "viewer".</A> |
Задание адреса. Эта команда обычно используется в конце документа. Выводится как правило курсивом (italic).
Пример
<ADDRESS>Текст выводится курсивом.</ADDRESS> |
Подключение Java приложения (applet) в HTML документ.
Определение "горячих точек" при формаровании карты (image map) активного рисунка.
RECT | Прямоугольник. 4 координаты: x1, y1, x2, и y2. |
RECTANGLE | Прямоугольник. 4 координаты: x1, y1, x2, и y2. |
CIRC | Круг. 3 координаты: centerx, centery, и radius. |
CIRCLE | Круг. 3 координаты: centerx, centery, и radius. |
POLY | Многоуголиник. задается 3 и более парами координат, определяющих область. |
POLYGON | Многоуголиник. задается 3 и более парами координат, определяющих область. |
window | Имя заданнго ранее окна для загрузки. Если имя окна не задано, то документ открывается в новом окне. |
_blank | Загрузка документа в новое окно без имени. |
_parent | Загрузка документа в "родительское" окно по отношению к текущему. |
_self | Загрузка документа в текущее окно. |
_top | Загузка документа в основное окно просмотрщика. |
Пример
<AREA SHAPE="RECT" COORDS="50, 25, 150, 125" HREF="http://www.sample.com"> <AREA SHAPE="RECT" COORDS="50, 25, 150, 125" NOHREF> <AREA TARGET="viewer" HREF="sample.htm" SHAPE="CIRCLE" COORDS="50, 25, 150, 125"> |
Полужирный текст.
Пример
<B>Displayed in a bold typeface.</B> |
Задание базового URL адреса для сокращенных адресов.
window | Имя заданнго ранее окна для загрузки. Если имя окна не задано, то документ открывается в новом окне. |
_blank | Загрузка документа в новое окно без имени. |
_parent | Загрузка документа в "родительское" окно по отношению к текущему. |
_self | Загрузка документа в текущее окно. |
_top | Загузка документа в основное окно просмотрщика. |
Примеры
<BASE HREF="http:// www.sample.com/hello.htm"> <BASE HREF="http:// www.sample.com/hello.htm" TARGET="viewer">
Установка базовых значений для шрифта, используемого в документе. Эти значения используются по умолчанию для неформатируемого текста, style sheet и командой FONT.
Примеры
<BASEFONT SIZE=3> This sets the base font size to 3. <FONT SIZE=+4> Now the font size is 7. <FONT SIZE=-1> Now the font size is 2. |
Задние фоновых звуков для страницы в формате WAV, AU или MIDI.
Увеличение текущего размера шрифта на единицу.
Пример
<BIG>This text is larger</BIG> |
Выделение текста, заданием левого и правого отступа.
Пример
<P>He said, <BLOCKQUOTE>"Hi there!" </BLOCKQUOTE> |
Общие параметры докумета.
Пример
Использование фонового рисунка:
<BODY BACKGROUND="/icons/bg.gif" BGPROPERTIES=FIXED BGCOLOR=#FFFFFF TEXT=#000000 LINK=#ff6600 VLINK=#330099> <HTML> <BODY>Here's a Web page!</BODY></HTML> |
Переход на следующую строку.
LEFT | Следуемый далее текст располагался ниже прижатого влево "плавающего" изображения (картинки) или таблицы. |
RIGHT | Следуемый далее текст располагался ниже прижатого вправо "плавающего" изображения (картинки) или таблицы. |
ALL | Расположить следующий далее текст ниже всех "плавающих" объектов (картинки, таблицы и т.д.). |
Задает подпись (заголовок) к таблице.
Команда CAPTION работает только внутри команды TABLE (см. раздел Таблицы).
Пример
<TABLE> <CAPTION ALIGN=BOTTOM> This caption will appear centered below the table. </CAPTION> <TR> .... </TR> </TABLE> |
Центрирование.
Пример
<CENTER>Hi there!</CENTER> |
Цитаты (выводятся как правило курсивом).
Пример
<CITE>Book Title.</CITE> |
Предназначен для выдачи текстов программ (code listing, sample). Выводит текст малым (small) шрифтом фиксированной ширины. Спецификация FONT FACE не воспринимается.
Пример
<CODE>Here is some text in a small fixed-width font.</CODE> |
Задание свойств одного или более столбцов таблицы Используется совместно с командой COLGROUP.
Команда работает только внутри команды TABLE (см. раздел Таблицы).
Параметры, определяемые командой COL, "сильнее" параметров команды COLGROUP.
Пример
<TABLE> <COLGROUP> <COL ALIGN=RIGHT> <COL ALIGN=LEFT> <COLGROUP> <COL ALIGN=CENTER> <TBODY> <TR> <TD>This is the first column in the group and is right-aligned.</TD> <TD>This is the second column in the group and is left-aligned.</TD> <TD>This column is in a new group and is centered.</TD> </TR> </TABLE> |
Задание свойств одного или более столбцов.
Команда работает только внутри команды TABLE (см. раздел Таблицы).
Свойства, заданные командой COLGROUP, переопределяются комндой COL.
Эта команда влияет на отрисовку линий, определяемых атрибутом RULES= команды TABLE.
Пример
<TABLE> <COLGROUP ALIGN=RIGHT> <COLGROUP SPAN=2 ALIGN=LEFT> <TBODY> <TR> <TD>This column is in the first group and is right-aligned</TD> <TD>This column is in the second group and is left-aligned</TD> <TD>This column is in the second group and is left-aligned</TD> </TR> </TABLE> |
Задание кометариев в документе. Текст внутри команды игнорируется просмотрщиком до первой команды HTML или до конца коментария.
Пример
<COMMENT>Данный текст не выводится.</COMMENT> |
Задание элемента списка определений.
Пример
<DL> <DT>Cat <DD>A furry cute animal that purrs and likes milk. <DT>Lizard <DD>A weird desert animal with a long tongue. </DL> |
Выделение определений (выводится как правило курсивом).
Пример
<DFN>HTML stands for hypertext markup language.</DFN> |
Задание списка directory. Элемент списка задается командой LI. Элемент не может содержать более 20 символов.
Пример
<DIR> <LI>Art <LI>History <LI>Literature <LI>Sports <LI>Entertainment <LI>Science </DIR> |
Размещение группы элементов друг под другом.
Пример
<DIV> This text represents a section. </DIV> <DIV ALIGN=CENTER> This text represents another section. </DIV> |
Задание списка определений.
Пример
<DL> <DT>Cat <DD>A furry cute animal that purrs and likes milk. <DT>Lizard <DD>A weird desert animal with a long tongue. </DL> |
Задание term'а в списке определений.
Пример
<DL> <DT>Cat<DD>A furry cute animal that purrs and likes milk. <DT>Lizard<DD>A weird desert animal with a long tongue.</DL> |
Выделение текста (выводится как правило курсивом).
Пример
<EM>This text will be in italics.</EM> |
Определения внедряемых объектов. Аналог команды OBJECT. Команда EMBED используется для совместимости с ранними версиями HTML документов.
Пример
<EMBED SRC="MyMovie.AVI" WIDTH=100 HEIGHT=250 AUTOSTART=TRUE PLAYBACK=FALSE> |
Задание размера, цвета и вида шрифта.
Задание форм для пользователя.
GET | Appends the arguments to the action URL and open it as if it were an anchor. |
POST | Sends the data via an HTTP post transaction. |
window | Specifies to load the link into the targeted window. The window must begin with an alpha-numeric character to be valid, except for the four target windows detailed below . |
_blank | Specifies to load the link into a new blank window. This window is not named. |
_parent | Specifies to load the link into the immediate parent of the document the link is in. |
_self | Specifies to load the link into the same window the link was clicked in. |
_top | Specifies to load the link into the full body of the window. |
Пример
<FORM TARGET="viewer" ACTION="http://www.sample.com/bin/search"> ... </FORM>
Определение одного окна в команде FRAMESET. У команды FRAME отсутсвует ограничетель "конец команды".
TOP | Текст прижат к верней части окна. |
MIDDLE | Текст размещен в середине окна. |
BOTTOM | Текст прижат к нижней части окна. |
LEFT | Окно (frame) выводится прижатого влево "floating frame," (плавующего окна) и внешний текст обтекает его справа. |
RIGHT | Окно (frame) выводится прижатого вправо "floating frame," (плавующего окна) и внешний текст обтекает его слева. |
Пример
<FRAME FRAMEBORDER=0 SCROLLING=NO SRC="sample.htm"> |
Задание многоокнного документа: использует команды FRAME внутри FRAMESET, и NOFRAMES вне.
Атрибуты FRAMEBORDER= и FRAMESPACING= команды FRAMESET имеют отношение ко всем окнам в данном FRAMESET определяемых командами FRAME. Их значение может быть изменено атрибутами команды FRAME.
Пример
<FRAMESET SCROLLING=YES COLS="25%, 50%, *"> <FRAME SRC="contents.htm"> <FRAME SRC="info.htm"> <FRAME SCROLLING=NO SRC="graphic.htm"> </FRAMESET> |
Renders text in heading style. Use H1 through H7 to specify different sizes and styles of heading.
The end-tag is required.
Пример
<H1>Welcome to Internet Explorer!</H1>
Marks the HTML document heading.
The end-tag is not required.
Пример
<HEAD> <TITLE>A Simple Document</TITLE> </HEAD>
Draws a horizontal rule.
Пример
<HR SIZE=5 WIDTH=80% NOSHADE>
Denotes the file as an HTML document.
This element has no attributes.
Пример
<HTML> <BODY> <P>This is an HTML document. </BODY> </HTML>
Renders text in italics.
Пример
<I>This text will be in italics.</I>
Defines a floating frame. Requires the end-tag.
TOP | Surrounding text is aligned with the top of the frame. |
MIDDLE | Surrounding text is aligned with the middle of the frame. |
BOTTOM | Surrounding text is aligned with the bottom of the frame. |
LEFT | The frame is drawn as a left-flush "floating frame," and text flows around it. |
RIGHT | The frame is drawn as a right-flush "floating frame," and text flows around it. |
Пример
<IFRAME FRAMEBORDER=0 SCROLLING=NO SRC="sample.htm"></IFRAME>
Вставка графики в HTML документ.
TOP | Текст располагается вверху картинки. |
MIDDLE | Текст располагается по центру картинки. |
BOTTOM | Текст располагается внизу картинки. |
LEFT | Картинка является "плавающей", текст обтекает картинку справа. |
RIGHT | Картинка является "плавающей", текст обтекает картинку слева. |
FILEOPEN | Начинать проигрывание как только закончится загрузка (используется по умолчанию). |
MOUSEOVER | Начинать проигрывать после указания пользователя (курсором мышки). |
Могут присутствовать оба значения, разделенные запятыми.
Задание параметров, определяющих ввод запросов (Форм).
CHECKBOX | Used for simple Boolean attributes or for attributes that can take multiple values at the same time. It is represented by a number of check box fields, each of which has the sa me name. Each selected check box generates a separate name/value pair in the submitted data, even if this results in duplicate names. The default value for check boxes is "on." |
HIDDEN | No field is presented to the user, but the content of the field is sent with the submitted form. This value can be used to transmit state information about client/server intera ction. |
IMAGE | An image field which you can click, causing the form to be immediately submitted. The coordinates of the selected point are measured in pixel units from the upper-left corner o f the image, and are returned (along with the other contents of the form) in two name/value pairs. The x-coordinate is submitted under the name of the field with ".x" appended, and the y-coordinate is submitted under the name of the field with ".y" appe nded. Any VALUE attribute is ignored. The image itself is specified by the SRC attribute, exactly as for the Image element. |
PASSWORD | The same as the TEXT attribute, except that text is not displayed as the user enters it. |
RADIO | Used for attributes that accept a single value from a set of alternatives. Each radio-button field in the group should be given the same name. Only the selected radio button in the group generates a name/value pair in the submitted data. Radio buttons require an explicit VALUE attribute. |
RESET | A button that when clicked resets the form's fields to their specified initial values. The label to be displayed on the button can be specified just as for the SUBMIT button. |
SUBMIT | A button that when clicked submits the form. You can use the VALUE attribute to provide a non-editable label to be displayed on the button. The default label is application-spe cific. If a SUBMIT button is clicked in order to submit the form, and that button has a NAME attribute specified, then that button contributes a name/value pair to the submitted data. Otherwise, a SUBMIT button makes no contribution to the submitted dat a. |
TEXT | Used for a single-line text-entry field. Use in conjunction with the SIZE and MAXLENGTH attributes. |
This default control type is TEXT.
Пример
<FORM ACTION="http://intranet/survey" METHOD=POST> <P>Name <BR><INPUT NAME="CONTROL1" TYPE=TEXT VALUE="Your Name"> <P>Password <BR><INPUT TYPE="PASSWORD" NAME="CONTROL2"> <P>Color <BR><INPUT TYPE="RADIO" NAME="CONTROL3" VALUE="0" CHECKED>Red <INPUT TYPE="RADIO" NAME="CONTROL3" VALUE="1">Green <INPUT TYPE="RADIO" NAME="CONTROL3" VALUE="2">Blue <P>Comments <BR><INPUT TYPE="TEXTAREA" NAME="CONTROL4" SIZE="20,5" MAXLENGTH="250"> <P><INPUT NAME="CONTROL5" TYPE=CHECKBOX CHECKED>Send receipt <P><INPUT TYPE="SUBMIT" VALUE="OK"><INPUT TYPE="RESET" VALUE="Reset"> </FORM>
Indicates the presence of a searchable index.
If the PROMPT= attributes is not used, the element displays the following message followed by a text box: "You can search this index. Type the keyword(s) you want to search for:" When the user enters text and presses ENTER, that text is posted back to the page's URL as a query.
Пример
<ISINDEX ACTION="http://intranet/search" PROMPT="Type in keywords here.">
Text to be entered at the keyboard. Renders text in fixed-width and boldface type.
Пример
<KBD>This user should enter this text.</KBD>
Source
HTML 2
Denotes one item of a list. In a DIR, MENU, OL, or UL block, denotes a new list item.
A | Use large letters |
a | Use small letters |
I | Use large Roman numerals |
i | Use small Roman numerals |
1 | Use numbers. |
Пример
<DIR> <LI>Art <LI>History <LI>Literature <LI>Sports <LI>Entertainment <LI>Science</DIR>
The LINK element establishs a hierarchical organization for in navigating between documents. The LINK element must reside within the HEAD element. The HEAD element may contain several LINK elements.
Пример
<LINK HREF="http://www.microsoft.com/newdocnewdoc.htm">
Renders text in fixed-width type.
Пример
<LISTING>Here's some plain text.</LISTING>
Specifies a collection of hot spots for a client-side image map.
Пример
<MAP NAME="map1"> <AREA ... > <AREA ... > </MAP>
Creates a scrolling text marquee.
TOP | Surrounding text aligns with the top of the marquee. |
MIDDLE | Surrounding text aligns with the middle of the marquee. |
BOTTOM | Surrounding text aligns with the bottom of the marquee. |
SCROLL | Start completely off one side, scroll all the way across and completely off, and then start again. This is the default. |
SLIDE | Start completely off one side, scroll in, and stop as soon as the text touches the other margin. |
ALTERNATE | Bounce back and forth within the marquee. |
Пример
<MARQUEE DIRECTION=RIGHT BEHAVIOR=SCROLL SCROLLAMOUNT=10 SCROLLDELAY=200>This is a scrolling marquee.</MARQUEE>
Denotes a list of items. Specifies that the following block consists of individual items, each beginning with an LI element.
Пример
<MENU> <LI>This is the first item in the menu. <LI>And this is the second item in the menu. </MENU>
Задание дополнительной информации об HTML документе для сервера, просмотрщика и поисковых машин в Internet'e.
Примеры:
<META HTTP-EQUIV="Expires" CONTENT="Tue, 04 Dec 1996 21:29:02 GMT"> <meta http-equiv="Keywords" CONTENT="HTML, Reference"> <META HTTP-EQUIV="Reply-to" content="anybody@microsoft.com"> <Meta Http-equiv="Keywords" CONTENT="HTML Reference Guide"> |
Expires: Tue, 04 Dec 1996 21:29:02 GMT Keywords: HTML, Reference Reply-to: anybody@microsoft.comкак часть HTTP ответа для методов `GET' или `HEAD', по которым затребован данный документ.
<HTML> <HEAD> <META HTTP-EQUIV="REFRESH" CONTENT=2> <TITLE>Reload Document</TITLE> </HEAD> <BODY> <P>Данный документ буде перезагужен через 2 секунды. </BODY> </HTML> |
<HTML> <HEAD> <META HTTP-EQUIV="REFRESH" CONTENT="5; URL=http://www.sample.com/next.htm"> <TITLE>Load Next Document</TITLE> </HEAD> <BODY> <P>Через 5 секунд будет загружен документ "http://www.sample.com/next.htm". </BODY> </HTML> |
Запрет разрыва строки.
Пример
<NOBR>Here's a line of text I don't want to be broken . . . here's the end of the line.</NOBR> |
Отметка части документа, предназначенного для просмотра через браузеры, не поддерживающие фреймы (FRAMES). Просмотрщики, поддерживающие фреймы игнорируют часть документа, которая содержится между командами начало NOFRAMES и конец /NOFRAMES.
Пример
<FRAMESET> <NOFRAMES>You need NN or MSie 3.0 to view frames!</NOFRAMES> </FRAMESET>
Inserts an object, such as an image, document, applet or control, into the HTML document.
BASELINE | The bottom of the object aligns with the baseline of surrounding text. |
CENTER | The object is centered between left and right margins. Subsequent text starts on the next line after the object. |
LEFT | The object aligns with the left margin, and subsequent text wraps along the right side of the object. |
MIDDLE | The middle of the object aligns with the baseline of surrounding text. |
RIGHT | The object aligns with the right margin, and subsequent text wraps along the left side of the object. |
TEXTBOTTOM | The bottom of the object aligns with the bottom of surrounding text. |
TEXTMIDDLE | The middle of the object aligns with the midpoint between the baseline and the x-height of the surrounding text. |
TEXTTOP | The top of the object aligns with the top of surrounding text. |
The end-tag is required.
An object can contain any elements ordinarily used within the body of an HTML document, including section headings, paragraphs, lists, forms and even nested objects.
Draws lines of text as an ordered list. Specifies that the following block consists of individual items, each beginning with an LI tag. The items are numbered.
A | Use large letters |
a | Use small letters |
I | Use large Roman numerals |
i | Use small Roman numerals |
1 | Use numbers. |
Пример
<OL> <LI>This is the first item in the list. <LI>And this is the second item in the list. </OL> <ex><OL START=3> <LI>This is item number 3. </OL> <OL TYPE=A> <LI>This is item A. </OL>
Denotes one choice in a list box. In a SELECT block, denotes one of the choices that will appear in the list.
Denotes a paragraph. Inserts a paragraph break and denotes a paragraph.
The end-tag is optional.
Пример
<P>This is a paragraph.</P>
Sets property values for a given object.
DATA | The value is data. This is the default value type. |
REF | The value is a URL. |
OBJECT | The value is a URL of an object in the same document. |
This element is valid only within an OBJECT element. The end-tag is optional.
Renders text in fixed-width type without processing tags. Renders text in fixed-width type. Also turns off HTML parsing until the browser encounters the </PLAINTEXT> tag.
Пример
<PLAINTEXT> Here's a sample of HTML: <A HREF="sample.url">This is a shortcut to sample.</A></PLAINTEXT>
Вывод текста без форматирования с сохранением всех пробелов
и концов строк. Выводится равноширенным шрифтом.
Замечание: будте осторожны,
в данном режиме вывода происходит обработка команд языка HTML
и спецсимволов.
Пример
<PRE>Here's some plain text.</PRE>
Зачернутый текст.
Пример
<S>This text has a line through it.</S>
Режим вывода предназначенный для примеров (уменьшенный равноширинный шрифт). Шрифт можно изменить, используя команду FONT FACE.
Пример
<SAMP>Here is some text in a small fixed-width font.</SAMP>
Specifies the inclusion of a script. Scripts execute and instantiate objects in the order in which they appear in the HTML. Named objects can be referenced only in the order in which they appear in the document.
Пример
<SCRIPT> <SCRIPT language="VBScript"> '... Additional VBScript statements ... </SCRIPT>
Denotes a list box or dropdown list.
Пример
<SELECT NAME="Cars" MULTIPLE SIZE="1"> <OPTION VALUE="1">BMW <OPTION VALUE="2">PORSCHE <OPTION VALUE="3" SELECTED>MERCEDES </SELECT>
Makes text one size smaller.
Пример
<SMALL>This text is smaller</SMALL>
Use to apply style information to text within a document. SPAN can be used to do localized formatting to text using STYLE as an attribute.
Пример
<SPAN STYLE="margin-left: 1.0in"> This paragraph is 1.0 inches from the left margin.<SPAN>
Renders text in strikethrough type.
Пример
<STRIKE>This text has a line through it.</STRIKE>
Emphasizes the text. Usually displays the text in bold.
Пример
<STRONG>This text will be bold.</STRONG>
Renders text in subscript.
Пример
<SUB>This text is rendered as subscript.</SUB>
Renders text in superscript.
Пример
<SUP>This text is rendered as superscript.</SUP>
ALIGN=align-type
BACKGROUND=url
BGCOLOR=color
BORDER=n
BORDERCOLOR=color
BORDERCOLORDARK=color
BORDERCOLORLIGHT=color
CELLPADDING=n
CELLSPACING=n
COLS=n
FRAME=frame-type
HEIGHT=n (value or percent)
RULES=rules
VALIGN=valign-type
WIDTH=n (value or percent)
Задание таблиц. Таблица будет пустой, если внутри команды не используются команды TR, TD, и TH.
LEFT | Таблица прижимается влево (используется по умолчанию). |
RIGHT | Таблица прижимается вправо. Текст в клетках прижимается к влево. |
MIDDLE | Текст центрируется (используется по умолчанию). |
TOP | Текст прижимается вверх. |
BOTTOM | Текст прижимается вниз. |
VOID | Убрать наружную часть рамки. |
ABOVE | Displays a border on the top side of the table frame. |
BELOW | Displays a border on the bottom side of the table frame. |
HSIDES | Displays a border on the top and bottom sides of the table frame. |
LHS | Displays a border on the left-hand side of the table frame. |
RHS | Displays a border on the right-hand side of the table frame. |
VSIDES | Displays a border on the left and right sides of the table frame. |
BOX | Displays a border on all sides of the table frame. |
BORDER | Displays a border on all sides of the table frame. |
NONE | Removes all interior table borders. |
GROUPS | Displays horizontal borders between all table groups. Groups are specified by the THEAD, TBODY, TFOOT, and COLGROUP elements. |
ROWS | Displays horizontal borders between all table rows. |
COLS | Displays vertical borders between all table columns. |
ALL | Displays a border on all rows and columns. |
The end-tag is required.
The optional THEAD, TBODY, TFOOT, COLGROUP, and COL elements can be used to organize a table and apply attributes across columns and groups of colum ns.
Пример
<TABLE BORDER=1 WIDTH=80%> <THEAD> <TR> <TH>Heading 1</TH> <TH>Heading 2</TH> </TR> <TBODY> <TR> <TD>Row 1, Column 1 text.</TD> <TD>Row 1, Column 2 text.</TD> </TR> <TR> <TD>Row 2, Column 1 text.</TD> <TD>Row 2, Column 2 text.</TD> </TR> </TABLE>
Defines the table body. Use this element to distinguish the rows in the table header or footer from those in the main body of the table.
If a table does not have a header or footer (does not have a THEAD or TFOOT element), the TBODY eleme nt is optional. The end-tag is always optional.
You can use the TBODY element more than once in a table. This is useful for dividing lengthy tables into smaller units and for controlling the placement of horizontal rules.
Пример
<TABLE> <THEAD> <TR> ... </TR> <TBODY> <TR> ... </TR> </TBODY> </TABLE>
Creates a cell in a table.
LEFT | The table is left-aligned. |
CENTER | Text is centered. |
RIGHT | The table is right-aligned. |
By default, text is centered.
TOP | Text is aligned with the top of each cell. |
MIDDLE | Text is aligned in the middle of each cell. |
BOTTOM | Text is aligned with the bottom of each cell. |
BASELINE | Text in adjoining cells in a row is aligned along a common baseline. |
By default, text is aligned in the middle of the cell.
This element is valid only within a row in a table, that is, you must use a TR element before using TD. All attributes are optional. The end-tag is optional.
Creates a multiple-line text entry control in which the user can enter and edit text.
The end-tag is required. Any text between the start and end-tags is used as the initial value for the control.
Defines the table footer. Use this element to distinguish the rows in the table footer from those in the header or main body of the table.
The table footer is optional, but if given only one footer is allowed. The TFOOT element is valid only within a table; you must use a TABLE element before using this elemen t. The end-tag is optional.
Пример
<TABLE> <TBODY> <TR> ... </TR> <TFOOT> <TR> ... </TR> </TABLE>
Creates a row or column heading in a table. The element is similar to the TD element but emphasizes the text in the cell to distinguish it from text in TD cells.
LEFT | Text is left-aligned. |
CENTER | Text is centered. |
RIGHT | Text is right-aligned. |
By default, text is centered.
TOP | Text is aligned with the top of each cell. |
MIDDLE | Text is aligned in the middle of each cell. |
BOTTOM | Text is aligned with the bottom of each cell. |
BASELINE | Text in adjoining cells in a row is aligned along a common baseline. |
By default, text is aligned in the middle of the cell.
This element is valid only within a row in a table, that is, you must use a TR element before using TH. All attributes are optional. The end-tag is optional.
Defines the table header. Use this element to distinguish the rows in the table header from those in the footer or main body of the table.
The table header is optional, but if given only one header is allowed. The THEAD element is valid only within a table; you must use a TABLE element before using this elemen t. The end-tag is optional.
Пример
<TABLE> <THEAD> <TR> ... </TR> <TBODY> <TR> ... </TR> </TABLE>
Specifies a title for the document. Internet Explorer uses this for the window caption.
This element is valid only within the HEAD element. The end-tag is required.
Пример
<HEAD> <TITLE>"Welcome To Internet Explorer!"</TITLE> </HEAD>
Creates a row in a table.
LEFT | Text is left-aligned. |
CENTER | Text is centered. |
RIGHT | Text is right-aligned. |
By default, text is centered.
TOP | Text is aligned with the top of each cell. |
MIDDLE | Text is aligned in the middle of each cell. |
BOTTOM | Text is aligned with the bottom of each cell. |
BASELINE | Text in adjoining cells in a row is aligned along a common baseline. |
By default, text is aligned in the middle of the cell.
Teletype. Вывод текста в режиме печатающей машинки. Выводится равноширинным шрифтом.
Пример
<TT>Это обычный (plain) текст.</TT>
Подчернутый текст.
Пример
<U>Этот текст будет подчеркнут.</U>Что даст:
Этот текст будет подчеркнут.
Задает ненумерованный список. Для задание элемента списка используется команда LI. Требуется обязательно команда "конец списка" </UL>.
Пример
<UL> <LI>Первый элемент списка. <LI>Второй элемент списка. </UL>
Используется для выделения переменных в тексте. Вывод зависет от настроек просмотрщика.
Пример
Enter the <VAR>filename</VAR> in the dialog box.Что даст:
Enter the filename in the dialog box.
Вставка мягкого конца строки в NOBR текст.
Пример
<NOBR> Эта строка текста выводится в режиме no break, но возможно его прервать с помощью команды .<WBR> Здесь может быть перенос строки <WBR>, или нет.</NOBR>Что даст:
Пример текста. Текст выводится шрифтом фиксированной ширины (Courier).
Пример
<XMP>Это есть равноширинный текст.</XMP>