Would you like to know which commands are available in HTML? We have put together an overview of the most important commands for you..
HTML stands for "Hypertext Markup Language" and is one of the most popular markup languages. In order to write HTML code, it is important that you are familiar with the most popular HTML commands and HTML tags. We have compiled a list here.
It is important to note that there are different versions of HTML. The commands mentioned here all relate to the latest HTML version, HTML5. However, most of them also apply to older HTML files. The named HTML commands can easily be entered in an HTML document or an HTML editor. A command always consists of two parts: <command> content </command>.
An example structure of an HTML document would be:
<html> <head> <title>Dokumententitel</title></head> <body>Inhalt des Dokuments</body> </html>
Note: The font color is no longer changed with HTML. The best way to do this is to use the CSS (Cascade Style Sheet) system..