View Full Version : What does xml, html and tagline mean? I know nothing about computers
Kendrakalli
Mar 24, 2013, 03:31 PM
What does xml, html and tagline mean? I know nothing about computers.
OrDiNaRyGiRl
Mar 25, 2013, 09:32 AM
Hmm I know that html(hyper text mark up language) is where you can make sites but it is so difficult.. and umm that's all I know lol hope I helped :)
farvaknowsbest
May 17, 2013, 07:25 AM
Html (hyper-text markup language) is a programming language used for devolping web pages.
Xml (Extensible Markup Language) is a prgramming language that defines a set of rules that are both human-readable and machine-readable.
For more information see the wikipedia articles on them
HTML - https://en.wikipedia.org/wiki/HTML
XML - XML - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/XML)
ScottGem
May 17, 2013, 07:47 AM
The correct answers are HTML and XML are MARK UP languages used to format data. In the case of HTML it is used to format text and graphics for display through a browser. As such it is primarily used to display "Pages" on the WEB.
In the case of XML it is used to identify data as a standard way to share data to a variety of applications.
A Markup language is characterized by "tags" that identify the data within the tags. For example if you surround a text string in HTML with the tags
<b>text string</b>
It will display text string as bolded. Similarly in XML you might identify a data field with tags indicating the filed name. For example:
<address>123 Elm Street</address>