Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "HTML"
From NetSec
GertieUbpgdd (Talk | contribs) |
Levi99Vmsb (Talk | contribs) |
||
Line 1: | Line 1: | ||
<b>H</b>yper <b>T</b>ext <b>M</b>arkup <b>L</b>anguage is the basic building blocks of webpages. Written in HTML elements made of up tags within brackets, HTML is interpreted by a web browser and then displayed in the form of a web page. | <b>H</b>yper <b>T</b>ext <b>M</b>arkup <b>L</b>anguage is the basic building blocks of webpages. Written in HTML elements made of up tags within brackets, HTML is interpreted by a web browser and then displayed in the form of a web page. | ||
+ | HTML 5 is the latest implementation, and though widespread usage is under way, it remains in development. | ||
+ | |||
+ | ==Example== | ||
+ | <pre style="background:none; border:none;"> | ||
+ | <html> | ||
+ | <head><title>html</title></head> | ||
+ | <body> | ||
+ | <p>Hello world</p> | ||
+ | </body> | ||
+ | </html> | ||
+ | </pre> | ||
+ | |||
+ | ==See also== | ||
+ | *[[CSS]] | ||
+ | *[[XML]] | ||
{{programming}}{{social}} | {{programming}}{{social}} | ||
[[Category:Interpreted languages]] [[Category:Programming Languages]] | [[Category:Interpreted languages]] [[Category:Programming Languages]] |
Revision as of 06:50, 26 May 2012
Hyper Text Markup Language is the basic building blocks of webpages. Written in HTML elements made of up tags within brackets, HTML is interpreted by a web browser and then displayed in the form of a web page.
HTML 5 is the latest implementation, and though widespread usage is under way, it remains in development.
Example
<html> <head><title>html</title></head> <body> <p>Hello world</p> </body> </html>