Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<title>Empty html tag</title>
</head>
<body>
<p>HTML empty tags</p>
<!--br means line break -->
<br>
<br>
<!--hr means horizontal line -->
<hr>
<p>empty tag means that include only start tag</p>
<hr>
<p>You can learn html in w3school website<p>
<!--a tag means hyperlink -->
<a href="https://www.w3schools.com" target="blank">w3school website</a>

<!--
absolute url = website image
-->
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/HTML5_logo_and_wordm
ark.svg/640px-HTML5_logo_and_wordmark.svg.png" width="" height=""/>

<!-- realtive url = local image -->

</body>
</html>

You might also like