Science  People  Locations  Timeline
Index: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Home > HTML


 Contents
1 Golf
HyperText Markup Language (HTML) is a markup language designed for creating web pages, that is, information presented on the World Wide Web. Defined as a simple "application" of SGML, which is used by organizations with complex publishing requirements, HTML is now an Internet standard maintained by the World Wide Web Consortium (W3C). The most recent version is HTML 4.01, though it has been superseded by XHTML.

1 Introduction

HTML generally appears in text files stored on computers connected to the Internet. These files contain markup, that is, instructions for the program on how to display or process the text in plain text format. The files are usually transferred across the internet using the HTTP network protocol, after which their HTML may be displayed by a visual web browser, aural browser (one that reads the text of the page to the user), braille reader (converts pages to a braille format), email client, or a wireless device like a cellular phone.

2 Markup

There are four kinds of markup elements in HTMLThis article is about HTML elements. For information on how to format Wikipedia entries, see How to edit a page and In computing, an HTML element (instance) in terms of SGML is the complete sequence of a start tag (with attributes and their values), any e:

Note that, besides the presentational markup, which, to repeat, is deprecated, the markup itself does not determine how the content within that markup will look. Basically, all the markup tells you is what the role of the content is. Is it a paragraph? Is it a heading? Is it a list? Is it a link? It's up to the Cascading Style SheetsCascading Style Sheets CSS is a computer language used to describe the presentation of a structured document written in HTML, XHTML or XML. The CSS specification is maintained by the World Wide Web Consortium (W3C). Overview CSS is used by both authors an to determine what that heading, list, etc will look like.



Read more »