Document header properties <META>

With this menu you can add a title and a description to your document and also indicate the author. The title is the text that appears in the title bar of the browser. By default CuteHTML Pro inserts the name to whom the program is registered, i.e. the user.

Most of the information is useful to identify the document with search engines and it complements other header information, specially the keywords necessary to make reference to your site, relation links which allow you to establish links between documents, and the documents’ base URL.

The command Meta associates your HTML document with header information that will be read by the http server. This information serves to identify the name of the document (NAME), the name of the author (AUTHOR), the content (CONTENT) and a directive HTTP-EQUIV. META is used in the header section (HEAD) of the document. This command is used by search and indexing engines.

This command allows you to define different options in the document header:

To indicate or modify the header properties of the document:

  1. On the Specialized tab, click on the button Header properties . You can also use the shortcut Shift+ALT+D (Refer to list of shortcuts).

  2. Click on the Title and Meta tab.

  3. Enter the necessary information.

CuteHTML Pro inserts in the header section of the document the following lines of code:

<title> a Title </title>
<meta name="Author" content="Name in registration ">
<meta name="Description" content="a description of the document">
<meta name="Generator" content="CuteHTML Pro">

 

The Title and Meta tab requires the input of the following information:

Title

Document title. The title of your document is displayed on the browser’s title bar.
<title>

Description

Description of the contents of your document. This information is used by the search and robot engines.
<description>

Keywords

Keywords used to reference your document. Use commas (,) to separate keywords. A keyword can be made up of several words.
<keyword>

Author

Author of the document.
<author>

Other META

Additional META that you can select from the dropdown list.

  1. Select the META you want to add from the Other META dropdown list or enter the tag directly in the text box.

  2. If the META added is http-EQUIV, enable corresponding box.

  3. In the Content zone, enter the information that pertains to this META.

  4. Click on the button Add to add it to the list.

You can modify the META added by selecting it and clicking on the Modify button. You can also delete it by clicking on the Remove button.

 

The META command allows you to establish relation links between files. The LINK tab establishes a relation with another object.. LINK has two attributes: REL which specifies the relation between the document and the link and REV which indicates a reverse relation. LINK is used on the header section (HEAD) of the document.

To insert a relation link in your document:

  1. On the Specialized tab, click on the button Header properties . You can also use the shortcut SHIFT+ALT+D (Refer to list of shortcuts).

  2. Click on the Link tab.

  3. Enter the necessary information.

Enter the following information under the Link tab:

Link

Name of target file for the relation link. The list indicates the files most recently opened. You can also use the Open to look for the file in your work station.

Relation

Type of relation between the current document and the target file.

Reverse Relation

Type of relation between the target file and the current document.

Linked Style Sheets (CSS)

Check this box if the specified file is an external style sheet.

When you exit the dialog box, CuteHTML Pro displays a message requesting confirmation to insert the new information under the header section of the document (<HEAD>).

CuteHTML Pro inserts the following lines of code in the document:

<link rel="stylesheet" type="text/css" href="stylesheet1.css">

 

The Meta command allows you to save a base URL address on the document. This address is usually the address of your Web site. In this way you can establish a relative address for the group of files found on a site which are identified using this command. This command is useful to avoid broken links between documents. BASE is placed in the header section (HEAD) of the document.

To specify a base URL in your document:

  1. On the Specialized tab, click on the button Header properties . You can also use the shortcut SHIFT+ALT+D (Refer to list of shortcuts).

  2. Click on the Base tab.

  3. Enter the necessary information.

Enter the following information under the Base tab:

URL

Address you want to use as a reference. You can click the Open button to specify an address of one of your HTML documents. If you specify an URL address found outside your site, remember to specify the communication protocol necessary (http, mailto, ftp, etc.)

Target (frame name)

Target of frame name (<FRAME>) that you defined.

Predefined target

Target or predefined frame in the HTML tags.

If you specify an address that is not found in your Web site, CuteHTML Pro displays a message so that you can confirm the address you entered.

When you exit the dialog box, CuteHTML Pro displays a message requesting confirmation to insert the new information under the header section of the document (<HEAD>).

CuteHTML Pro inserts the following lines of code in the document:

<base href="http://www.visicommedia.com">