| • Science | • People | • Locations | • Timeline |
| Contents | ||
|
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.
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:
1 Golf
will cause a reader to treat "Golf" as a first-level heading),
boldface will render boldface text) (Note that presentation markup is deprecated and is not recommended; authors should use CSSCascading 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 for presentation),
Wikipedia will render the word Wikipedia as a hyperlinkA hyperlink or simply a link is a reference in a hypertext document to another document or other resource. As such it would be similar to a citation in literature. However, combined with a data network and suitable access protocol, it can be used to fetch to the specified URL), and
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.