1 / 7

Using Commands in MS Interdev 6.0 for Building a Web Page

Using Commands in MS Interdev 6.0 for Building a Web Page. Prepared by: Cengizhan Cengiz 030010050. Common Commands. Html. Description

blenda
Download Presentation

Using Commands in MS Interdev 6.0 for Building a Web Page

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. UsingCommands in MS Interdev 6.0 for Building a Web Page Prepared by: Cengizhan Cengiz 030010050

  2. Common Commands

  3. Html • Description • This element identifies the document as containing HTML elements. The begin tag typically appears after the !DOCTYPE element. The end tag comes after all HTML elements in the document. • Syntax • <HTMLTITLE=text> • ParameterDescription • LANG=language Specifies which language to use in ISO standard language abbreviation form. • TITLE= Used to provide advisory information. • Remarks • Example • <HTML> • <BODY> • <P>This is an HTML document. • </BODY> • </HTML>

  4. Body • Description • Specifies beginning and end of document body. This element can be used to set the background image, the background color, the link color and the top and left margins of the page. The end tag is required. • Syntax • <BODYALINK=colorBACKGROUND=urlBGCOLOR=colorBGPROPERTIES=FIXEDBOTTOMMARGIN=pixelsCLASS=classnameID=valueLANG=languageLANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBSLEFTMARGIN=pixelsLINK=colorRIGHTMARGIN=pixelsSCROLL=YES|NOSTYLE=css1-propertiesTEXT=color

  5. TITLE=stringTOPMARGIN=nVLINK=colorevent=script> • ParameterDescription • ALINK=color The color for the active link. For a complete list of colors, look at the Internet Explorer color table. • BACKGROUND=url Specifies a background picture. The picture is tiled behind the text and graphics on the page. • BGCOLOR=color Sets the background color of the page. For a complete list of colors, look at the Internet Explorer color table. • BGPROPERTIES= Specifies a watermark, which is a background picture that does not scroll. • OTTOMMARGIN= Specifies the bottom margin for the entire body of the page and overrides the default margin. If set to "0" or "", the bottom margin will be exactly on the bottom edge of the window or frame. CLASS=classname Specifies the class of the tag being defined. This is used to associate a sub-classed style sheet with the tag.

  6. ID=value An SGML identifier used as the target for hypertext links or for naming particular elements in associated style sheets. Valid ID values must begin with a letter. The underbar character, "_", may be used in the ID name. The ID should be unique throughout the scope of the document. If more than one object with the same identifier exists in a document, a collection of those named items is created that can only be referenced by ordinal position. OTTOMMARGIN= Specifies the bottom margin for the entire body of the page and overrides the default margin. If set to "0" or "", the bottom margin will be exactly on the bottom edge of the window or frame. CLASS=classname Specifies the class of the tag being defined. This is used to associate a sub-classed style sheet with the tag. ID=value An SGML identifier used as the target for hypertext links or for naming particular elements in associated style sheets. Valid ID values must begin with a letter. The underbar character, "_", may be used in the ID name. The ID should be unique throughout the scope of the document. If more than one object with the same identifier exists in a document, a collection of those named items is created that can only be referenced by ordinal position. LANG=language Specifies which language to use in ISO standard language abbreviation form. LANGUAGE=JAVASCRIPT | JSCRIPT | VBS | VBSCRIPT Specifies the language the current script is written in and invokes the proper scripting engine. The default value is JAVASCRIPT. JAVASCRIPT, JSCRIPT The scripting language is written in JavaScript. VBS, VBSCRIPT The scripting language is written in VBScript.

  7. LEFTMARGIN=pixels Specifies the left margin for the entire body of the page and overrides the default margin. If set to "0" or "", the left margin will be exactly on the left edge of the window or frame. LINK=color The color of shortcuts that have not yet been visited. For a complete list of colors, look at the Internet Explorer color table. • RIGHTMARGIN=pixels Specifies the right margin for the entire body of the page and overrides the default margin. If set to "0" or "", the right margin will be exactly on the right edge of the window or frame. SCROLL=YES | NO Turns on or off the scrollbars. The default is YES. • STYLE=css1-properties Specifies an in-line style sheet for the tag. • TEXT=color Sets the color of text on the page. For a complete list of colors, look at the Internet Explorer color table. • TITLE=text Used to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event. • TOPMARGIN=pixels Specifies the margin for the top of the page and overrides the default margin. If set to "0" or "", the top margin will be exactly on the top edge of the window or frame. • VLINK=color The color of shortcuts that have already been visited. For a complete list of colors, look at the Internet Explorer color table. • Examples • This is the HTML used to insert the background image of this page. • <BODY BACKGROUND="http://www.microsoft.com/ie/images/watermrk.gif" BGPROPERTIES=FIXED • BGCOLOR=#FFFFFF TEXT=#000000 LINK=#ff6600 VLINK=#330099> • <HTML><BODY>Here's a Web page!</BODY></HT

More Related