What is HTML? - Accuranker
Free Hub Resources
HTML stands for Hypertext Markup Language. This is the standard markup language used to create webpages. Here is an example of how HTML is used to define a very basic webpage with a title and a paragraph of text:
<\!doctype html>
<code><html></code>
<code><head></code>
<title>This is a title</title>
<code></head></code>
<code><body></code>
<p>This is a paragraph.</p>
<code></body></code>
<code></html></code>