mirror of https://github.com/tiyn/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
740 B
19 lines
740 B
# Markup Language
|
|
|
|
A markup Language is way to encode text so that it has great amounts of structure and formatting.
|
|
The most common markup languages are [HTML](#html), Markdown, LaTeX and [XML](#xml).
|
|
|
|
## HTML
|
|
|
|
HTML is a markup language that is mostly used in the internet via the hypertext system and accessed
|
|
via [web browsers](/wiki/web_browser.md).
|
|
For styling HTML accordingly CSS is used most of the time.
|
|
HTML can be quite challenging to write, read and check for validity.
|
|
An easy way to do the latter one is a validation service.
|
|
One of the most used ones is the
|
|
[Markup Validation Service by W3C](https://validator.w3.org/#validate_by_input).
|
|
|
|
## XML
|
|
|
|
XML is a markup language often used together with [RSS Feeds](/wiki/rss.md).
|