html

Dictionary


  • a set of tags and rules (conforming to SGML) for using them in developing hypertext documents

  • Wikipedia


    Html series In computing, HyperText Markup Language (HTML) is a markup language designed for the creation of web pages and other information viewable in a web browserbrowser. HTML is used to structure information -- denoting certain text as headings, paragraphs, lists and so on -- and can be used to define the ''semantics'' of a document.Originally defined by Tim Berners-Lee and further developed by the IETF with a simplified SGML syntax, HTML is now an international standard (International Organization for StandardizationISO/International Electrotechnical CommissionIEC 15445:2000). Later HTML specifications are maintained by the World Wide Web Consortium (W3C).Early versions of HTML were defined with looser syntactical rules which helped its adoption by those unfamiliar with web publishing. Web browsers commonly made assumptions about intent and proceeded with rendering of the page. Over time, the trend in the official standards has been to create an increasingly strict language syntax; however, browsers still continue to render pages that are far from valid HTML. The current version of the HTML specification is now XHTML 1.0, this being very similar to the earlier HTML 4.01 that it replaces. The change from HTML to XHTML applies the stricter rules of XML to HTML to make it easier to process and maintain.

    Introduction - HTML is a form of markup that is oriented toward the construction of single-page text documents with specialized rendering software called ''HTML user agents'', the most common example of which is a ''web browser''. HTML provides a means by which the document's content can be annotated with various kinds of metadata and rendering hints. The rendering cues may range from minor text decorations, such as specifying that a certain word be underlined or that an image be inserted, to sophisticated imagemaps and form definitions. The metadata may include information about the document's title and author, structural information such as headings, paragraphs, lists, and information that allows the document to be linked to other documents to form a hypertext web.HTML is a text based format that is designed to be both readable and editable by humans using a text editor. However, writing and updating a large number of pages by hand in this way is time consuming, requires a good knowledge of HTML and can make consistency difficult to maintain. WYSIWYGVisual HTML editors such as Macromedia Dreamweaver, Adobe GoLive or Microsoft FrontPage allow the creation of web pages to be treated much like word processor documents. The code generated by these programs can be of poor quality. However, the open-source visual HTML editor Nvu generates code of high quality.HTML can be generated on the fly using a server-side scripting system such as Perl, PHP, JavaServer PagesJSP, or Active Server PagesASP. Many web applications like content management systems, wikis and web forums generate HTML pages.

    Version history of the standard -
  • w3.org - Hypertext Markup Language (First Version), published June 1993 as an Internet Engineering Task Force (IETF) working draft (not standard).
  • ietf.org - HTML 2.0, published November 1995 as IETF Request for CommentsRFC 1866, and declared obsolete/historic by RFC 2854 in June 2000.
  • w3.org - HTML 3.2, published January 14, 1997 as a W3C Recommendation.
  • w3.org - HTML 4.0, published December 18, 1997 as a W3C Recommendation.
  • w3.org - HTML 4.01, published December 24, 1999 as a W3C Recommendation.
  • purl.org - ISO/IEC 15445:2000 ("International Organization for StandardizationISO HTML", based on HTML 4.01 Strict), published May 15, 2000 as an ISO/IEC international standard.
  • w3.org - XHTML 1.0, published January 26, 2000 as a W3C Recommendation, later revised and republished August 1, 2002.There is no official standard HTML 1.0 specification because there were multiple informal HTML standards at the time. However, some people consider the initial edition provided by Tim Berners-Lee to be the definitive HTML 1.0. That version did not include an IMG element type. Work on a successor for HTML, then called "HTML+", began in late 1993, designed originally to be "A superset of HTML…which will allow a gradual rollover from the previous format of HTML". The first formal specification was therefore given the version number 2.0 in order to distinguish it from these unofficial "standards". Work on HTML+ continued, but this never became a standard.The HTML 3.0 standard was proposed by the newly formed W3C in March 1995, and provided many new capabilities such as support for tables, text flow around figures and the display of complex math elements. Even though it was designed to be compatible with HTML 2.0, it was too complex at the time to be implemented, and when the draft expired in September 1995 work in this direction was discontinued due to lack of browser support. HTML 3.1 was never officially proposed, and the next standard proposal was HTML 3.2 (code-named "Wilbur"), which dropped the majority of the new features in HTML 3.0 and instead adopted many browser-specific element types and attributes which had been created for the Netscape NavigatorNetscape and Mosaic (web browser)Mosaic web browsers. Support for math as proposed by HTML 3.0 finally came about years later with a different standard, MathML.HTML 4.0 likewise adopted many browser-specific element types and attributes, but at the same time began to try to "clean up" the standard by marking some of them as deprecationdeprecated, and suggesting they not be used.Minor editorial revisions to the HTML 4.0 specification were published as HTML 4.01.The most common extension for files containing HTML is .html, however, older operating systems, such as DOS, limit file extensions to three letters, so a .htm extension is also used. Although perhaps less common now, the shorter form is still widely supported by current software.

    Markup element types - Below are the kinds of HTML elementmarkup element types in HTML.
  • Structural markup. Describes the purpose of text. For !example,::

    Golf: directs? the browser to render "Golf" as a second-level heading, similar to "Markup element types" at the start of this section. Structural markup does not denote any specific rendering, but most web browsers have standardised on how elements should be formatted. For example, by default, headings like these will appear in large, bold text. Further styling should be done with Cascading Style Sheets (CSS).
  • Presentational markup. Describes the appearance of the text, regardless of its function. For !example,::boldfacebold text. In the majority of cases, using presentational markup is inappropriate, and presentation should be controlled by using Cascading Style SheetsCSS. In the case of both !< b>bold? and !< i>italic? there are elements which usually have an equivalent visual rendering but are more semantic in nature, namely !< strong>strong? !emphasis? and !< em>emphasis? respectively. It is easier to see how an aural user agent should interpret the latter two elements.
  • Hypertext markup. Links parts of the document to other documents. For !example,::Wikipedia: will? render the word wikipedia.org - Wikipedia as a hyperlink to the specified URL.

    The Document Type Definition - In order to specify which version of the HTML standard they conform to, all HTML documents should start with a Document Type Declaration (informally, a "DOCTYPE"), which makes reference to a Document Type Definition (DTD). For example: This? declaration asserts that the document conforms to the Strict DTD of HTML 4.01, which is purely structural, leaving formatting to Cascading Style Sheets. In some cases, the presence or absence of an appropriate DTD may influence how a web browser will display the page.In addition to the Strict DTD, HTML 4.01 provides Transitional and Frameset DTDs. The Transitional DTD was intended to gradually phase in the changes made in the Strict DTD, while the Frameset DTD was intended for those documents which contained frames.

    Separation of style and content - Efforts of the web development community have led to a new thinking in the way a web document should be written; XHTML epitomizes this effort. Standards stress using markup which suggests the structure of the document, like headings, paragraphs, block quoted text, and tables, instead of using markup which is written for visual purposes only, like , (bold), and (italics). Some of these elements are not permitted in certain varieties of HTML, like HTML 4.01 Strict. Cascading Style SheetsCSS provides a way to separate the HTML structure from the content's presentation, by keeping all code dealing with presentation defined in a CSS file. See separation of style and content.

    Serving HTML - The World Wide Web primarly uses HTTP to serve HTML documents to users. In order to do this correctly, it is necessary for the document to be described correctly: the necessary metadata includes the MIME Type (typically "text/html", although other choices include !"application/xhtml+xml&qu ot;)? and the character encoding (see Character encodings in HTML).

    HTML Email - HTML is also used in email messages. Many email clients include a GUI HTML editor for composing emails and a rendering engine for displaying them once received. Use of HTML in email is quite controversial due to a variety of issues. The main benefit is the ability to decorate an email with presentational attributes (bold headings etc). However, the disbenefits include:
  • the recipient may not have an email client that can display HTML
  • the email has larger size because lots of formatting will be much larger than the plain text equivalent. This issue is made slightly worse by the fact that, for compatibility, most clients send a plaintext version as well.
  • overuse of formatting (there was at one stage a craze for making letterheads using HTML and sending them as part of every e-mail)
  • potential security issues of deluding the recipient to accept an email as being from an authoriative source (such as a bank) when this is not the case; this is related to phishing scams.
  • potential security issues of simply rendering a complex format like HTML.For these reasons many Electronic mailing listmailing lists deliberately block HTML email either stripping out the HTML part to just leave the plain text part or rejecting the entire message.

    See also -
  • Character encodings in HTML
  • Dynamic HTML
  • HTML editor
  • HTML element
  • HTML reference
  • HTML scripting
  • Parse
  • Tim Berners-Lee
  • Unicode and HTML
  • Mathematical HTML
  • Web colors
  • List of document markup languages
  • Comparison of document markup languages
  • Comparison of layout engines (HTML)
  • XHTML
  • Wikipedia:WikiProject Usability/HTML

    External links - wikibooks

    W3C Specifications -
  • w3.org - HTML 4.01 Specification
  • w3.org - XHTML 1.0 Specification
  • w3.org - XHTML Media Types

    Validators -
  • validator.w3.org - W3C's Markup Validator
  • htmlhelp.com - WDG HTML Validator
  • uitest.com - Validators and checkers (uitest.com - Site Check)

    Selected Tutorials/Guides -
  • yourhtmlsource.com - HTMLSource: HTML Tutorials
  • htmldog.com - HTML DogCategory:Markup languagesCategory:HTML Category:Technical communicationCategory:W3C standardsCategory:ISO !standardsaf:HTMLar:HTMLbg:HTML bs:HTMLbr:HTMLca:HTMLcs:HTMLda :Hypertext? Markup Languagede:Hypertext Markup !Languageet:HTMLes:HTMLeo:HTMLf a:اچ‌تی‌ام‌الfr: Hypertext? Markup !Languagefy:HTMLgl:HTMLko:HTMLh r:HTMLid:HTMLia:HTMLis:HTMLit: HTMLhe:HTMLlv:HTMLlt:HTMLhu:HT MLnl:HyperText? Markup Languageja:Hypertext Markup !Languageno:HTMLpl:HTMLpt:HTMLr o:HTMLru:HTMLsimple:HTMLsk:Hyp ertext? markup !languagesl:HTMLsr:HTMLfi:HTMLs v:HTMLtl:HTMLth:HTMLvi:HTMLtr: Hiper? Metin İşaret !Diliuk:HTMLyi:הטמלzh:HTML< /text>
  • Websites


    Changes Training Centre
    Changes Training Centre (CTC) is a private post-secondary educational institution fully registered and accredited by the Private Career Training Institutions Association of British Columbia (PCTIA). Featuring Diploma programs in General Insurance, Accounting and Payroll, Management, Administration, and more. Certifications include PMCP, Real Estate, and CFP. Contact us at 604-852-1233, (toll free 1-877-852-1233) email info@changestraining.com or go to www.changestraining.com for more information.
    http://www.changestraining.com/

    Webdesign Suedtirol - Webwerkstatt
    Wir erstellen und programmieren Ihren Internetauftritt mit der dynamischen Programmierumgebung von php und mysql mit CSS und Javascript. Wir sind in Klobenstein am Ritten / Bozen / Suedtirol / Italien zu finden.
    http://www.webwerkstatt.it

    Font Garden - the home of handwriting fonts
    Font Garden - the home of handwriting fonts thousands of fonts and dingbats for PC and Mac. Handwriting to font conversion. Welcome!
    http://www.fontgarden.com

    Extreme Internet Software
    Digital imaging software for web users. Digital imaging software for web. Extreme Thumbnail Generator - powerful tool for creating online photo albums and web image galleries. Extreme Picture Finder - ultimate multimedia files searching, categorizing and multi-threaded downloading tool.
    http://www.exisoftware.com/

    CARCELLE ULTRASONIDOS
    ULTRASONIC PLASTIC WELDING AND LASER MARKING SERVICE.
    http://www.ultrasonidos.net/

    Internet Manual
    Internet Manual - das virtuelle Internet-Handbuch ist ein Lernkurs für die wichtigsten Themenbereiche rund um das Internet
    http://www.internet-manual.de/

    Website, Database and Online Application Development Services
    York Instructional Services is a Sacramento based web site development company specializing in web site marketing and management and e-commerce solutions.
    http://www.yorkinstructionalservices.com/

    TinyMCE
    TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under LGPL by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances. TinyMCE is very easy to integrate into other Content Management Systems.
    http://tinymce.moxiecode.com/

    Nikola Tesla: Forgotten American Scientist
    Teacher, John Wagner and his third grade students donate bronze bust of Tesla to 19 major universities.
    http://www.ntesla.org/

    Integrio Systems - custom software development & offshore outsourcing
    Custom software development & programming in Vancouver, Canada. Web site design and hosting. Offshore outsourcing facilities in Ukraine.
    http://www.integrio.net/

    Servicebuero des grafischen Gewerbes
    Service - Beratung - Schulung fuer das grafische Gewerbe und der Druckindustrie.
    http://www.karsten-mueller.org/

    Interface Web Design Site Design Hosting Services Search Engine Optomization
    Interface Web Design, located in the Tampa Bay Area on Florida's West Coast. We specialize in Web Site Design for small to medium-sized busineses.
    http://www.interfacewebdesign.com/

    Umbra Design Düsseldorf - Logo, Corporate-Design, Webdesign, Grafik-Design, Print, Internet, Flash, Präsentations-CDs
    Umbra-Design aus Düsseldorf beschäftigt sich schwerpunktmäßig mit Grafik-Design, Webdesign und Multimedia. Unsere besonderen Stärken: besonders im Corporate Design, HTML, Flash.
    http://www.umbra.de

    ADSL4Linux.de
    ADSL4Linux - LINUX,Installation, Konfiguration, Basiswissen
    http://www.adsl4linux.de

    Tittivillus
    A web-comic about a devil with ADD!
    http://www.tittivillus.com/

    Sickbrain » A proposito di Web Publishing
    Sickbrain.org é un sito che tratta argomenti relativi al Web Publishing. Il sistema di divulgazione è estremamente diretto: corsi, tutorial e tanti esempi pratici. Tutto nell'ottica di un web accessibile e usabile, di modo che la comunicazione sia semplice e lineare.
    http://www.sickbrain.org/

    Cybcon Industries
    Cybcon Industries - LDAP, Webdesign and more ...
    http://www.cybcon-industries.de/

    WSI Search Engine Submission
    General Information about Search Engine Submission and Search Engine Optimizations.
    http://www.wsisearchenginesubmission.com/

    Christian Work At Home Opportunities
    Super easy website building, training, support, tips, reviews, and MORE!
    http://www.promised-land-services.com/

    Visiography.com
    Web design and development, flash and graphic design. Specialists in DDA compliant web sites.
    http://www.visiography.com/

    Maasai Association
    Representing the Maasai people and preserving traditions and culture through education, health, environmental conservation, and economic development.
    http://www.maasai-infoline.org/

    Lodgings in Rome Italy
    Italy Rome downtown only near underground residence, bed and breakfast, rooms, apartment, sleeps quiet, seasonal rates with private bath safe box colour TV with cooking facilities transfer service available discounts for long term www.alloggiobb.com
    http://www.alloggiobb.com/Inglese/Index.htm

    Pike Design - Web Coding For Technically Challenged Visionaries (tm)
    Web consultant specializing in integrated web and corporate branding. In Northern New Jersey.
    http://www.pikedesign.com

    NIMASoft Solutions
    Official Website of NIMASoft Solutions
    http://www.nimasoft.com/

    Design Soup
    All natural with no preservatives, Website production tops our menu of alternatively fresh design. It's a mix of robust style & creative thinking in site development utilizing cutting edge DHTML, Macromedia Flash, and total graphic design solutions.
    http://www.designsoup.com/

    Digital Spoke - web design, consultancy & education
    We are a web design company, specialising in creative, usable and accessible websites. Focus on charity/educational/non-profit/community organisations.
    http://www.dspoke.com/

    siterecensie
    we offer a free review of websites owned bij private persons and non profit organisations.
    http://www.siterecensie.com/

    British Wildlife Helpline
    Information site to help people who find sick, injured and orphaned wildlife in the UK. It has rescue organisation details,first aid, feeding and handling guidelines,articles on environmental problems and an email address for further help.
    http://www.britishwildlifehelpline.com/

    peter bastiaanssen
    coolaart on a hot site with artprojects as artis a dog, yapping modern art, art crows myths, portfolio with paintings, sculptures in wood, installations tc. etc.
    http://www.artisadog.nl/

    cem reklame print & copy
    werbe,grafische atelier,
    http://www.cemprint.ch/

    -= servers.hu - professzionális internet megoldások
    A servers.hu oldalain található: Magyar tárhely szolgáltatás, webdesign, perl cgi scriptek futtatása, web, internet, host, hosting service, A legjobb szolgáltatások a lehető legjobb áron! Tárhely szolgáltatások /web, php, email,mysql,.../ Domain szolgáltatások /regisztráció, fenntartás, stb./ E-mail szolgáltatások /levelezőlista, virtuális email, hírlevél/ Server szolgáltatások /felkészítés, elhelyezés, Linux CD-k/ Minden szolgáltatásunk megrendelhető kedvező, havi fizetéssel, illetve éves fizetéssel is. Rendeljen akár azonnal, online rendszerünk segítségével! Úgy érzi, túl magasak a havi díjak? Szeretné, ha válogathatna a lehetőségek közül, vagy komplett megoldást keres? Tekintse meg ajánlatunkat!
    http://www.servers.hu/

    Arup Bhanja's Home on the Web - PHP based CMS Engine
    Arup Bhanja's free website design tool,php based CMS engine, template based php generated site design,rss feed maker, rss/rdf feed reader,templates are compatible with Dreamweaver, Frontpage, no need to learn programming
    http://www.arupbhanja.com/

    Noart le site officiel
    Environement design & electrometallomecanic artefacts
    http://www.noart.org/

    zappo :: [Agentur für Kommunikation]
    Von Konzeption über Gestaltung, von Produktion bis Mediaservice, von Webdesign bis Webpublishing - zappo ist bereit, sich den Herausforderungen der Kunden zu stellen.
    http://www.zappo-berlin.de/

    andreas n. schubert - grafikdesign. webprogrammierung. multimedia
    ch bin selbstständiger grafikdesigner und webprogrammierer. meine kunden sind in ganz unterschiedlichen branchen zu hause. informieren sie sich auf meinen webseiten über mein angebot und meine referenzen. sie finden aktuelle projekte und arbeitsproben der letzten 10 jahre. einfache webprojekte realisiere ich ebenso wie komplexe datenbanklösungen. entwurf und erstellung neuer webauftritte - optimierung und aktualisierung schon bestehender - überprüfung ihrer webseiten auf fehler - beratung, schulung - suchdiensteinträge - multimedia - corporate design und layout - visualisierungen (2d/3d)
    http://www.andreas-n-schubert.de/

    Ariamedia
    Ariamedia is a strategic E-Business solutions provider located in Dallas, Texas. Through a multi-disciplinary approach, we create complex solutions leveraging powerful creative design, application development, and our suite of Conductor E-Business Products.
    http://www.ariamedia.com

    Acservices creation de sites web
    Acservices realise des sites internet pour offrir une vitrine web à votre entreprise et dynamiser votre activite. Egalement bases de donnees en php.
    http://www.acservices-info.com

    Web Site Engineering / Sviluppo Siti Web
    www.wse.it - Web Site Engineering developes web site, e-commerce, cartoon, films and animation with flash technology.
    http://www.wse.it/

    BBQ-Fenster
    windows, doors
    http://www.bbq-fenster.de/

    Arvixe - Quality Hosting and Design
    Based in the US, Arvixe offers quality design and hosting services to a variety of companies and individuals. Our guarantee to our customers is quality and affordability.
    http://www.arvixe.com/

    Free Toplisten
    Kostenlose Toplisten für die eigene Homepage - Free toplist's for your homepage
    http://www.free-toplisten.de/

    Livescore provider
    Livescore, live score, The highest odds tax free online bookmaker & the fastest real-time livescore provider. Highest sportsbook in online sports betting and offshore sports bets. Provide free live score and highest odds feeds for webmasters. Livescores feeds and highest odds feeds for your site in wap, rss, xml, txt, js, html, sms, wml, email2sms, emailTosms format.
    http://www.exactscores.com/

    HTML Goodies
    From newbie to pro, this site has just about everything you need to use HTML effectively, and then some.
    http://www.htmlgoodies.com

    World Wide Web Consortium
    International industry consortium founded in 1994 whose purpose is to develop specifications, guidelines, software, and tools to promote the Internet's evolution and ensure its interoperability.
    http://www.w3.org/

    Adobe Systems Incorporated
    Designs, develops and markets systems and application software which enables users to work with professional creative tools, assemble illustrations, images and text into fully formatted documents, output documents directly to printing devices, and distribute documents on paper, video or compact disc, or electronically. (Nasdaq: ADBE).
    http://www.adobe.com/

    HTML Writers Guild
    Services and resources to help members learn, improve, and perfect their skills in the craft of Web design.
    http://www.hwg.org/

    W3C HTML Validator
    Free Perl script for HTML validation.
    http://validator.w3.org/

    Personal tools
    • DirPedia.com
    • - combining a dictionary, an encyclopedia and a web directory