|
|
 |
|
|
 |
|
|
|
 |
HTML |
 |
|
|
| |
|
| |
|
|
|
|
| |
|
First Steps In HTML Tutorial |
|
|
| view >> |
|
| |
|
|
|
|
| |
|
Basics Of Html And javaScript Writing |
|
|
| view >> |
|
| |
|
|
|
|
| |
|
Basics Of Web Development Tutorial |
|
|
| view >> |
|
| |
|
|
|
|
| |
|
Unblock The Blocked Site Tutorial |
|
|
| view >> |
|
| |
|
|
|
|
| |
|
Create Custom Web Forms with Drag And Drop |
|
|
| view >> |
|
| |
|
|
|
|
|
|
|
|
|
 |
|
HTML, stands for Hypertext Markup Language, is the main language for web pages authoring in initial it is used as a direct coding. HTML provides a structure to create documents which create headings, paragraphs, lists and other items which being used in website, HTML, allows images and objects to be entrenched and can be used to create interactive forms. HTML, include or can load scripts in languages such as JavaScript which affect the behavior of HTML processors like Web browsers; and Cascading Style Sheets (CSS) to define the appearance and layout of text and other material. Hyper Text Markup Language (HTML) is the encoding scheme used to create and format a web document.
HTML HISTORY VIDEO TUTORIAL
In 1989, Tim Berners-Lee, wrote a memorandum which is based on internet hypertext system, Berners-Lee specified HTML and wrote the browser and server language in the end of 1990.
HTML FIRST SPECIFICATIONS VIDEO TUTORIAL
In 1991 HTML available for the public usage, in initial it based on 20 basic elements and compromising in the initial with simple design of HTML, except for the hyperlink tag, that is based on SGMLguid, the SGML based documentation format at CERN, the thirteen of these elements still exist in HTML current coding, HTML is created for formatting the text and images for the web browsers to dynamically created web pages, major type of elements was found in 1988, in ISO technical report TR 9537 Techniques for using SGML, covers the features of early text formatting languages such as RUNOFF command developed in early 1960 for CTSS, that command were used by typesetters to manually format documents, late SGML concept of markup is based on elements, which is merely point effects, and the separation of structure and processing, HTML now moved towards the direction of CSS, the creator of HTML considered the application is related to SGML, and formally defined by the Internet Engineering Task Force (IETF) in mid-1993 for the first proposal for an HTML specification, “Internet-draft is included a SGML document type definition to define the grammar.
After the HTML and HTML+ drafts expired in early 1994, the IETF created an HTML Working Group, which in 1995 completed "HTML 2.0", the first HTML specification intended to be treated as a standard against which future implementations should be based. Published as Request for Comments 1866, HTML 2.0 included ideas from the HTML and HTML+ drafts. The 2.0 designation was intended to distinguish the new edition from previous drafts.
Further development under the auspices of the IETF was stalled by competing interests. Since 1996, the HTML specifications have been maintained, with input from commercial software vendors, by the World Wide Web Consortium (W3C). However, in 2000, HTML also became an international standard (ISO/IEC 15445,2000). The last HTML specification published by the W3C is the HTML 4.01 Recommendation, published in late 1999. Its issues and errors were last acknowledged by errata published in 2001.
HTML Version history of the standard Tutorial
HTML HTML and HTML5 Dynamic HTML XHTML XHTML Mobile Profile and C-HTML Character encodings Font family HTML editor HTML element HTML scripting Layout engine Quirks mode Style sheets Unicode and HTML W3C Web colors Comparison of document markup languages web browsers layout engines for HTML HTML5 Non-standard HTML XHTML
HTML TUTORIAL
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. As of HTML 5, no Document Type Definition will need to be specified, and will only determine the layout mode.
HTML element Tutorial
HTML documents are composed entirely of elements. In general an element can have three components, a tag, some attributes and the actual content. A tag is the element's name enclosed in angle brackets. An element is everything between a start tag and the associated end tag , whose name is prefixed with a slash, "/". The element's attributes are contained within the start tag and the actual content is located between the tags. A general element is
Content
Some elements, such as , do not have any content and therefore, no closing tag. Also, by not assigning attributes most start tags default their attribute values.
There are several types of markup elements used in HTML.
Structural markup describes the purpose of text. For example, Golf establishes "Golf" as a second-level heading, which would be rendered in a browser in a manner similar to the "HTML markup" title at the start of this section. Structural markup does not denote any specific rendering, but most Web browsers have standardized default styles for element formatting. Text may be further styled with Cascading Style Sheets (CSS).
Presentational markup describes the appearance of the text, regardless of its function. For example boldface indicates that visual output devices should render "boldface" in bold text, but gives no indication what devices which are unable to do this (such as aural devices that read the text aloud) should do. In the case of both bold and italic, there are elements which usually have an equivalent visual rendering but are more semantic in nature, namely strong emphasis and emphasis respectively. It is easier to see how an aural user agent should interpret the latter two elements. However, they are not equivalent to their presentational counterpart.
|
|
|
|
|
|
|
|
 |
|