HTML Fundamentals Tutorial
About Lesson

The syntax of HTML is relatively straightforward, consisting of opening and closing tags that encapsulate content. Tags are enclosed within angle brackets (< >), with the opening tag preceding the content and the closing tag following it. For example, to create a paragraph of text, you would use the <p> (opening) and </p> (closing) tags.

<p>This is a paragraph of text.</p>
Join the conversation