<tagname>Content...</tagname>
<h1>This Heading tag</h1>
<p>This paragraph tag</p>
Start tag | Element content | End tag |
---|---|---|
<h1> | My First Heading | </h1> |
<p> | My first paragraph. | </p> |
<br> | none | none |
<!DOCTYPE html> <html> <head> <title>Example | title of HTML page</title> </head> <body> <h1>This is Heading tag</h1> <p>This is paragraph tag</p> </body> </html>
<!DOCTYPE html> <html> <head> <title>Example | title of HTML page</title> </head> <body> <h1>This is Heading tag <p>This is paragraph tag </body> </html>
<a href="https://phpcoderspoint.com"> Go to website </a>
<img src="example.jpg" alt="image_description" width="151" height="151">
<p>This is a paragraph tag</p>