Sunteți pe pagina 1din 26

HTML

HTML, which stands for HyperText Markup Language, is the predominant markup language for web pages. It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes, and other items. It allows images and objects to be embedded and can be used to create interactive forms

ELEMENTS
HTML documents are composed entirely of HTML elements that, in their most general form have three components: a pair of element tags with a "start tag" and "end tag"; some element attributes given to the element within the tags; and finally, all the actual, textual and graphical[clarification needed], information content that will be rendered on the display <tag>content to be rendered</tag>

HTML APPLICATIONS

An HTML Application (HTA; file extension ".hta") is a Microsoft Windows application that uses HTML and Dynamic HTML in a browser to provide the application's graphical interface. A regular HTML file is confined to the security model of the web browser, communicating only to web servers and manipulating only webpage objects and site cookies

DATA TYPES

An HTML Application (HTA; file extension ".hta") is a Microsoft Windows application that uses HTML and Dynamic HTML in a browser to provide the application's graphical interface. A regular HTML file is confined to the security model of the web browser, communicating only to web servers and manipulating only webpage objects and site cookies

MARKUP
HTML markup consists of several key components, including elements (and their attributes), character-based data types, and character references and entity references. Another important component is the document type declaration, which specifies the Document Type Definition
<html> <head> <title>Hello HTML</title> </head> <body> <p>Hello World!</p> </body> </html>

The head tag


Just like the header of a memo, the head of an HTML document contains special information, like its title. The head of a document is demarcated by <head> and </head> respectively. <html> <head> <title>My First HTML Document</title> </head>

Titles

A title tag allows you to specify a Document Title in your browser window. When people make hotlists, this title is what they see in their list after they add your document.
<title>My First HTML Document</title>

The body tag


Like you might expect, the body tags <body> and </body> define the beginning and end of the bulk of your document. All your text, images, and links will be in the body of the document.
<html> <head> <title>My First HTML Document</title> </head> <body>

Paragraphs
In HTML, a paragraph tag <p> should be put at the end of every paragraph of "normal" text (normal being defined as not already having a tag associated with it).
<p> causes a line break and adds a trailing blank line <br> causes a line break with no trailing blank line

Boldface and Italics


You can add emphasis to text by using the boldface and italic tags or the emphasis and strong tags. This is a <b>boldface</b> tag. This is how boldfacing appears. This is an <i>italic</i> tag. This is how italics appear.

Lists
There is an easy way in HTML to have numbered, unnumbered, and definition lists Unnumbered lists Unnumbered lists are started with the <ul> tag, followed by the actual list items, which are marked with the <li> tag. The list is ended with the ending tag </ul>. <ul> <li> list item 1 <li> list item 2 <li> list item 3 </ul>

Numbered lists: Here is the same list using a numbered list format: <ol> <li> list item 1 <li> list item 2 <li> list item 3 </ol> Here is how that list would display: 1. list item 1 2. list item 2 3. list item 3

Blockquote

The blockquote tag indents the text (both on the left and right) inside the tags. The blockquote tag looks like this: <blockquote>...</blockquote>

Center
You can center text, images, and headings with the center tag: syntax:<center>This is a centered sentence</center>

This is a centered sentence.

Addresses
The <address> tag normally appears at the end of a document and is used most frequently to mark information on contacting the author or institution that has supplied this information <address> Introduction to HTML / Pat Androget / Pat_Androget@ncsu.edu </address> WILL BE:Introduction to HTML / Pat Androget / Pat_Androget@ncsu.edu

ADVANCED HTML COMMANDS

action=" "

Defines the URL to which form output will be directed. If the action parameter is omitted then the URL of the document, itself, if assumed.

Example:
action="http://www.txsi.com/cgi-bin/form.pl"

align=

Defines the alignment of an object, element or some text. bottom top :align=top Justify :align=justify left middle(center) right :align=middle

background=" "

Defines a background image which will be used as the backdrop for the page. Example:

background="images/back01.jpg"

border=

Defines the width in pixels of the border surrounding a bordered object. Example:

border=10

bgproperties=

Used in conjunction with the background parameter in the Internet Explorer browser, this command attribute will allow a background image to float on a page like a watermark.
Example: bgproperties=fixed

href=" "

Defines the location which is the object of hypertext reference anchor (link) or a default base hypertext reference.
Example: href="http://www.iconbazaar.com"

loop=" "
Used in the Internet Explorer browser to define whether or not a video image will loop back to the beginning and how many times it will repeat.
Defined as a positive integer it sets the number of repetitions. Defined as infinite or -1 it allows continuous looping. The parameter is specific to the Internet Explorer browser.

Example: loop="-1"

scrolling=

Controls whether or not scrolling is permitted within frames in a framed HTML document.] Example:

scrolling=no

src=" "

Defines the source of an HTML object, generally an image or a file. Example:

src="http://www.xmp.org/images/dot.gif"

vlink=

Defines the default color displayed by a visited link. Examples:

vlink="cyan"vlink="#00ffff"

S-ar putea să vă placă și