English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Below through5A simple example to show you the usage and preview of different HTML web tags.
HTML headings (Heading) are defined by the <h1> - <h6> tag to define.
<h1>I am a title1 h1</h1> <h2>I am a title2 h2</h2> <h3>I am a title3 h3</h3> <h4>I am a title4 h4</h4> <h5>I am a title5 h5</h5> <h6>I am a title6 h6</h6>Testen Sie es heraus ‹/›
HTML paragraphs are defined by the <p> tag.
<p>This is the first paragraph.</p> <p>This is the second paragraph.</p> <p>This is the third paragraph.</p>Testen Sie es heraus ‹/›
HTML links are defined by the <a> tag.
<a href="https://de.oldtoolbag.com">This is a link</a> <a href="https://de.oldtoolbag.com/html/html-tutorial.html">html basic tutorial hyperlink</a>Testen Sie es heraus ‹/›
Tip: Specify the link address in the href attribute.
(You will learn more about attributes in the later chapters of this tutorial).
HTML images are defined by the <img> tag.
<img src="/static/images/logo.png" width="258" height="39" />Testen Sie es heraus ‹/›
Note: The path, width, and height of the image are displayed as attributes.
HTML tables are defined by the <table> tag.
<table border="1"> <tr> <td>oldtoolbag.com Basics Tutorial for Tables</td> <td>oldtoolbag.com Basics Tutorial for Tables</td> <td>oldtoolbag.com Basics Tutorial for Tables</td> <td>oldtoolbag.com Basics Tutorial for Tables</td> </tr> </table>Testen Sie es heraus ‹/›
Hinweis: Die Ränder, Breite und Höhe der Tabelle werden als Attribute dargestellt.