Knowledge in Html

What is HTML ?

What is HTML ?

What is XHTML ?

XHTML stands for EXtensible HyperText Markup Language

Html 5 notes for professionals

This pdf file containing the advance knowledge of html5. and this pdf file gives you professional knowledge about html5.

Presentation on HTML (Cover All Topics)

Hypertext Markup Language (HTML) is used to make webpages. It describes the structure of WEBPAGE and tell the browser that how the content is to be displayed. List of Topics in HTML :- 1. Introduction 2. Tags 3. Comments 4. Attributes 5. List & it's types. 6. HTML Tables 7. HTML Class 8. HTML ID 9. HTML Forms 10. HTML Images 11. HTML Links. and many more.

About basic to advanced HTML

In this file containing all about HTML. Definition, tags, properties, colours, Text colour, background colour, and upto advance level.

HTML from basic to advanced

This file contains all about HTML designing.

Some basic knowledge about HTML

This file contains all about basics knowledge of HTML which is very important for programmers who are beginners.

Basic HTML

This is a pdf of HTML basic tags. This tags use to comman in any webpages.So you are learn and create to simple statics web pages.html is not a programming language but it is most of use in web pages, simple example any Google pages inspect so you saw the html tags and all pages to create on hatml basics.So if you are interested in computer subject so learn more and more language.

HTML5

This is a pdf of HTML5 basic tags. This tags use to comman in any webpages.So you are learn and create to simple statics web pages.html is not a programming language but it is most of use in web pages, simple example any Google pages inspect so you saw the html tags and all pages to create on hatml basics.So if you are interested in computer subject so learn more and more language.

HTML Attribute

HTML Attributes • All HTML elements can have attributes • Attributes provide additional information about an element • Attributes are always specified in the start tag • Attributes usually come in name/value pairs like: name="value" ________________________________________ The href Attribute HTML links are defined with the tag. The link address is specified in the href attribute: Example This is a link » You will learn more about links and the tag later in this tutorial. ________________________________________

HTML Elements

HTML Elements An HTML element usually consists of a start tag and an end tag, with the content inserted in between: Content goes here... The HTML element is everything from the start tag to the end tag: My first paragraph.

HTML Paragraphs

HTML Paragraphs The HTML element defines a paragraph: Example This is a paragraph. This is another paragraph. » Note: Browsers automatically add some white space (a margin) before and after a paragraph. ________________________________________ HTML Display You cannot be sure how HTML will be displayed. Large or small screens, and resized windows will create different results. With HTML, you cannot change the output by adding extra spaces or extra lines in your HTML code. The browser will remove any extra spaces and extra lines when the page is displayed: Example This paragraph contains a lot of lines in the source code, but the browser ignores it. This paragraph contains a lot of spaces in the source code, but the browser ignores it. »