| Tags | Meaning | Structure |
|---|---|---|
| <h1> to <h6 | Headings(h1=biggest,h6 smallest) | <h1>title<h1> |
| <p> | Paragraph | <p>Text here<p> |
| <a> | Link | <a href="https://example.com">Click me<a> |
| <img> | IMage | <img src="pic.png" alt="description"> |
| <div> | Division/Block | <div>Section<div> |
| <ul>,<ol>,<li> | Lists | <ul><li>Items<li><ul> |
For more HTML Tags:Visit here.
In-short : tags = the grammar of the web. They don’t do the fancy styling (that’s CSS), nor make things interactive (that’s JS), but they define what everything is.