View video tutorial

HTML Inline Tags

HTML

Inline elements display in a line.

HTML Inline Tags


➔ Inline elements are those that occupy space enclosed by a defined tag instead of breaking into new line.

➔ They do not force the text after them to a new line.

➔ Several inline elements can be placed in a row, and they will display in a line.

➔ Inline elements cannot contain block-level elements.

Supported Global attributes

Global attributes may be applied on all elements, although some elements may have no effect on them.

<accesskey>, <class>, <contenteditable>, <contextmenu>, <data-*>, <dir>, <draggable>, <dropzone>, <hidden>, <id>, <lang>, <spellcheck>, <style>, <tabindex>, <title>, <translate>.

Learning with HTML Editor "Try it Now"

You can edit the HTML code and view the result using online editor.

Example <a> tag

<!DOCTYPE html>
<html>
<head>
    <title>HTML a tag example</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta charset="utf-8" />
</head>
<body>
    <h2>HTML a tag example</h2>
    <p>Visit <a href="https://w3context.com" target="_blank">https://w3context.com</a></p>
</body>
</html>
Try it Now »

Copy and click on the "Try it Now" button to see how it works.