E-Learning

Current Status
Not Enrolled
Price
Free
Get Started

1. `<html>` – The root of an HTML document

2. `<head>` – Contains metadata/info for the document

3. `<title>` – Sets the title of the page (shown in browser tab)

4. `<body>` – Contains everything visible on the web page

5. `<meta>` – Defines metadata like character set or page description

6. `<link>` – Links external files like CSS

7. `<style>` – Adds internal CSS styles

8. `<script>` – Adds JavaScript to the page

9. `<base>` – Sets the base URL for links on the page

Text and Formatting Tags:

10. `<h1>` to `<h6>` – Headings (from largest to smallest)

11. `<p>` – Paragraph

12. `<br>` – Line break

13. `<hr>` – Horizontal line

14. `<strong>` – Bold text (important)

15. `<b>` – Bold text (without importance)

16. `<em>` – Italic text (with emphasis)

17. `<i>` – Italic text (without emphasis)

18. `<u>` – Underlined text

19. `<mark>` – Highlights text

20. `<small>` – Smaller text

21. `<sub>` – Subscript text (e.g., H<sub>2</sub>O)

22. `<sup>` – Superscript text (e.g., x<sup>2</sup>)

23. `<pre>` – Preserves spacing and line breaks

24. `<code>` – Displays code snippets

25. `<blockquote>` – Used for long quotes

26. `<q>` – Inline short quote

27. `<abbr>` – Abbreviations

28. `<cite>` – Citation or source of a quote

29. `<dfn>` – Defines a term

Link and Navigation Tags:

30. `<a>` – Anchor tag, used for hyperlinks

31. `<nav>` – Navigation links section

Media Tags:

32. `<img>` – Displays an image

33. `<audio>` – Adds sound/audio

34. `<video>` – Embeds a video

35. `<source>` – Used inside `<audio>` or `<video>` to define media source

36. `<track>` – Adds subtitles to video/audio

37. `<figure>` – Wraps media like images

38. `<figcaption>` – Adds a caption to media

`<d>` – Table header section

47. `<tbody>` – Table body

48. `<tfoot>` – Table footer

Other Useful Tags:

49. `<div>` – A container for content

50. `<span>` – Inline container for small pieces of content