Elements - HTML CSS HTML

HTML CSS examples for HTML:Element

Introduction

The following code shows an HTML element with some text.

I like <code>HTML</code> and CSS.

The start tag is <code>, and the end tag is </code>.

Between the tags is the element's content.

The tags and the content are the code element.

code is the element name and element names are not case sensitive.

The more common style is to use lowercase characters.


Related Tutorials