Category: html_css
basic html tags
Published on 25 May 2026
Explanation
Basic structure tags of an HTML
page
Code:
<html></html>,<head></head>,<body></body>
Explanation
Heading and paragraph tags
Code:
<h1>Main Heading</h1>, <h2>Sub Heading</h2>, <p>This is a paragraph</p>
Explanation
Link, image, and line break tags
Code:
<a href='https://google.com'>Google</a>, <img src='image.jpg' alt='Image'>,Hello <br>World
Explanation
List related tags
Code:
<ul><li>Apple</li></ul>, <ol><li>First </li></ol>, <li>List Item</li>
Explanation
Container and text styling tags
Code:
<div>Container</div>, <span>Inline Text</span>, <strong>Bold Text</strong>
Explanation
Form related tags
Code:
<form></form>,<input type='text'>, <button>Submit</button>
Explanation
Table related tags
Code:
<table></table>,<tr></tr>,<td>Data</td>