Skip to main content

Posts

Script - HTML Tutorial with Example

Script - HTML Tutorial with Example www.willvick.com      The HTML SCRIPT Element places a script within in the HEAD element (that which starting with <head> tag and ending with </head> tag ) or BODY element (that which starting with <body> tag and ending with </body> tag ) in an HTML document. Using SCRIPT Element , you can create dynamic web pages; SCRIPT Element is supported in all major browsers . It is used to define a client-side script , such as a JavaScript or VBScript . SCRIPT element makes the page more interactive .

Paragraph - HTML Tutorial with Example

Paragraph - HTML Tutorial with Example www.willvick.com      In an HTML document paragraphs   are defined with the <p> tag ,  starts with the <p> opening tag and end with </p> tag .Browsers automatically adds an extra blank line before and after a paragraph.The <p> tag is supported in all major browsers .

Meta - HTML Tutorial with Example

Meta - HTML Tutorial with Example www.willvick.com     META element is placed inside the HEAD element (that which starts with the <head> opening tag and ends with the </head> tag ). Meta elements are typically used to specify page description, keywords, author of the document and other metadata . The <meta> tag provides information about your HTML document . Metadata will not be displayed on the page, but it is used by browsers , search engines, or other web services . Usually Metadata gives information to browsers like how to display content of the HTML document, name and other information about the author , last modified information of the page, when the page will reload and etc.

List - HTML Tutorial with Example

List - HTML Tutorial with Example www.willvick.com Definition Lists      In an HTML document, a Definition list starts with the < dl> tag and end with </dl> , <dt> tag is used for item of the list and <dd> tag is used for describes the item in the list. Unordered Lists      An unordered list starts with the <ul> tag and end with </ul> and list item starts with the <li> tag end with the </li> tag in an HTML document. Ordered Lists      An ordered list starts with the <ol> tag and end with </ol> and list item starts with the <li> tag end with the </li> tag in an HTML document.

Link - HTML Tutorial with Example

Link - HTML Tutorial with Example www.willvick.com An anchor tag "a" is used to define a link and the destination of the link is defined in the "href" attribute of the tag.

Line Break - HTML Tutorial with Example

Line Break - HTML Tutorial with Example www.willvick.com      In a HTML document the <br /> tag is used for a single line break . The <br> tag has no end tag , it is an empty tag . The <br> tag is supported in all major browsers.

Image - HTML Tutorial with Example

Image - HTML Tutorial with Example www.willvick.com       Images are defined with the <img> tag in an HTML document. src attribute is use for location of the image. alt attribute is use for short description of the image. Height attribute is use for specify the height of the image. Width attribute is use for specify the width of the image.