xxxxxxxxxx
<head></head>
<body></body>
<title></title>
<h1></h1><h6></h6>
<p></p>
<ol><li></li></ol>
<ul><li></li></ul>
<img src="" alt="">
<a href=""></a>
<!-- Comment -->
xxxxxxxxxx
Anchor
<a href="" target="_blank">Name</a>
Headings and Paragraph
<h1>Heading</h1>
<h2>Heading</h2>
<h3>Heading</h3>
<h4>Heading</h4>
<h5>Heading</h5>
<h6>Heading</h6>
<p>
Paragraph
</p>
Image
<img src="path" alt="alttext">
xxxxxxxxxx
<html>
<head>
<title> kwik Learners </title>
</head>
<body>
<h1> Hello Kwik Learners </h1>
<p> This is the content </html>
</body>
</html>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>Basic HTML Tags</title>
</head>
<body>
<!-- Heading tags -->
<h1>This is a heading level 1</h1>
<h2>This is a heading level 2</h2>
<h3>This is a heading level 3</h3>
<!-- Paragraph tag -->
<p>This is a paragraph.</p>
<!-- Link tag -->
<a href="https://www.example.com">This is a link</a>
<!-- Image tag -->
<img src="image.jpg" alt="Description of the image">
<!-- List tags -->
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</body>
</html>