100 Basic Word Used in Html

HTML, or HyperText Markup Language, is the standard language used to create and design web pages. It provides the structure for web documents and describes the elements and their relationships within a web page. HTML uses a system of tags and attributes to format content, embed multimedia, create links, and much more. Understanding the key terminologies in HTML is essential for web development, as it allows developers to write and interpret code effectively.

Below is a detailed list of 100 HTML terminologies, including explanations to help you grasp the fundamental concepts and elements used in HTML.


HTML Terminologies

  1. Attribute: Additional information added to HTML elements to provide more details or control their behavior. For example, href in <a href="https://example.com">. Wikipedia
  2. Anchor Tag: <a> tag used to create hyperlinks. It can link to other pages, files, or locations within the same page. Wikipedia
  3. Block Element: An HTML element that starts on a new line and takes up the full width available. Examples include <div> and <p>. Wikipedia
  4. BR Tag: <br> tag used to insert a line break in the text. Wikipedia
  5. Button Element: <button> tag used to create a clickable button. It can be used in forms or to trigger JavaScript functions. Wikipedia
  6. Canvas: <canvas> tag used to draw graphics on the fly via JavaScript. It is commonly used for rendering graphics, animations, and games. Wikipedia
  7. Character Entity: A special sequence of characters used to display symbols and reserved characters in HTML, such as &copy; for the copyright symbol. Wikipedia
  8. CDATA: Stands for Character Data, used in XML and HTML to include text that should not be parsed by the parser. Wikipedia
  9. Comment: <!-- comment --> used to include notes or explanations in the HTML code that are not displayed in the browser. Wikipedia
  10. DOCTYPE: <!DOCTYPE html> declaration that defines the HTML version and ensures that the document is rendered in standards mode. Wikipedia
  11. Element: A basic building block of HTML that consists of a start tag, content, and an end tag. For example, <p>This is a paragraph.</p>. Wikipedia
  12. Form: <form> tag used to create a form for user input. It can contain various input elements like text boxes, buttons, and checkboxes. Wikipedia
  13. Head Element: <head> tag contains metadata about the HTML document, such as title, links to stylesheets, and scripts. Wikipedia
  14. HTML Document: The entire structure of an HTML file, which includes the <!DOCTYPE html>, <html>, <head>, and <body> tags. Wikipedia
  15. Hyperlink: A clickable link created using the <a> tag that directs users to another webpage or resource. Wikipedia
  16. ID Attribute: An attribute used to uniquely identify an HTML element within a page. For example, <div id="header">. Wikipedia
  17. Image Tag: <img> tag used to embed images in an HTML document. It uses the src attribute to specify the image source. Wikipedia
  18. Input Element: <input> tag used to create interactive controls in a web form, such as text fields, radio buttons, and checkboxes. Wikipedia
  19. JavaScript: A scripting language used to create dynamic content and interactive elements on web pages. Wikipedia
  20. Label Tag: <label> tag used to define labels for form controls, improving accessibility and usability. Wikipedia
  21. Link Tag: <link> tag used to link external resources like stylesheets to the HTML document. It is commonly used in the <head> section. Wikipedia
  22. Meta Tag: <meta> tag used to provide metadata about the HTML document, such as character encoding and viewport settings. Wikipedia
  23. Navigation: <nav> tag used to define a section of navigation links. It helps in organizing and grouping links together. Wikipedia
  24. Ordered List: <ol> tag used to create a list of items where each item is numbered sequentially. Wikipedia
  25. Paragraph: <p> tag used to define a block of text as a paragraph. It automatically adds space before and after the paragraph. Wikipedia
  26. Section: <section> tag used to define a thematic grouping of content, typically with its own heading. Wikipedia
  27. Span Tag: <span> tag used to apply styles or JavaScript to a part of the text without breaking the line. Wikipedia
  28. Strong Tag: <strong> tag used to give importance to text, typically rendered as bold. Wikipedia
  29. Table: <table> tag used to create a table for displaying tabular data. It uses <tr>, <td>, and <th> tags for rows, cells, and headers respectively. Wikipedia
  30. Title Tag: <title> tag defines the title of the HTML document, displayed on the browser’s title bar or tab. Wikipedia
  31. Unordered List: <ul> tag used to create a list of items with bullet points. Wikipedia
  32. Video Tag: <video> tag used to embed video files in an HTML document. It supports attributes like controls, autoplay, and src. Wikipedia
  33. Iframe: <iframe> tag used to embed another HTML page within the current page. Wikipedia
  34. Link: <a> tag used to create hyperlinks to other web pages or resources. Wikipedia
  35. Meta Description: <meta name="description" content="..."> provides a brief summary of the web page’s content, often used by search engines. Wikipedia
  36. Placeholder: The placeholder attribute in form elements displays a hint or example of the expected input. Wikipedia
  37. Progress Bar: <progress> tag represents the completion status of a task. Wikipedia
  38. Script Tag: <script> tag used to include JavaScript code or link to external JavaScript files. Wikipedia
  39. Select Element: <select> tag used to create a drop-down list of options in a form. Wikipedia
  40. Source Tag: <source> tag used within <audio> and <video> tags to specify multiple media resources. Wikipedia
  41. Style Tag: <style> tag used to include CSS styles directly within an HTML document. Wikipedia
  42. Summary Tag: <summary> tag is used in conjunction with the <details> tag to provide a summary or heading for the content that can be expanded. Wikipedia
  43. Table Header: <th> tag defines a header cell in a table, usually displayed in bold and centered. Wikipedia
  44. Table Data Cell: <td> tag defines a standard cell in a table. Wikipedia
  45. Table Row: <tr> tag defines a row in a table. Wikipedia
  46. Text Area: <textarea> tag creates a multi-line text input field in forms. Wikipedia
  47. Title Attribute: The title attribute provides additional information about an element, typically displayed as a tooltip. Wikipedia
  48. Tooltip: A small pop-up box that appears when a user hovers over an element with a title attribute. Wikipedia
  49. Video Controls: The controls attribute added to the <video> tag displays play, pause, and volume controls. Wikipedia
  50. Web Storage: The HTML5 feature allowing web applications to store data locally in the browser using localStorage and sessionStorage. Wikipedia
  51. Web Worker: JavaScript code running in the background, separate from the main thread, allowing for parallel execution. Wikipedia
  52. XHTML: A stricter variant of HTML that follows XML rules. Wikipedia
  53. XML: Extensible Markup Language used to define rules for encoding documents in a format that is both human-readable and machine-readable. Wikipedia
  54. Meta Charset: <meta charset="UTF-8"> specifies the character encoding for the HTML document. Wikipedia
  55. Meta Keywords: <meta name="keywords" content="..."> provides keywords related to the content of the page for search engine optimization. Wikipedia
  56. Meta Robots: <meta name="robots" content="..."> provides instructions to search engines about indexing and following links. Wikipedia
  57. Multimedia: Content that includes a combination of text, audio, video, and images. HTML provides elements like <audio>, <video>, and <img> for multimedia. Wikipedia
  58. Nav Tag: <nav> tag is used to define navigation links within a document. Wikipedia
  59. NOSCRIPT Tag: <noscript> tag defines alternative content to be displayed when scripts are not supported or disabled. Wikipedia
  60. Object Tag: <object> tag is used to embed multimedia content like images, videos, or applets. Wikipedia
  61. Output Tag: <output> tag represents the result of a calculation or user action. Wikipedia
  62. Picture Tag: <picture> tag allows for the inclusion of different image sources for different scenarios, such as varying screen sizes or resolutions. Wikipedia
  63. Preformatted Text: <pre> tag displays text exactly as it is written in the HTML file, preserving spaces and line breaks. Wikipedia
  64. Progress Element: <progress> tag represents the progress of a task in the form of a progress bar. Wikipedia
  65. Quote Tag: <blockquote> tag is used for long quotations and is usually displayed with indentation. Wikipedia
  66. Ruby Annotation: <ruby>, <rt>, and <rp> tags are used to provide annotations or pronunciation guides for East Asian text. Wikipedia
  67. Section Tag: <section> tag defines a section in a document, such as a chapter or thematic grouping of content. Wikipedia
  68. Source Set: The srcset attribute in the <img> tag provides a list of image sources with different sizes for responsive design. Wikipedia
  69. Strong Emphasis: <strong> tag is used to give strong emphasis to text, typically displayed in bold. Wikipedia
  70. Template Tag: <template> tag is used to declare fragments of HTML that are not rendered immediately but can be activated later via JavaScript. Wikipedia
  71. Text Alignment: The text-align CSS property is used to align text within an element. Wikipedia
  72. Textarea: <textarea> tag is used to create a multi-line text input field in a form. Wikipedia
  73. Title Attribute: The title attribute provides additional information about an element, often shown as a tooltip. Wikipedia
  74. Video Controls: The controls attribute in the <video> tag adds video playback controls, such as play and pause. Wikipedia
  75. Viewport Meta Tag: <meta name="viewport" content="..."> is used to control the layout on mobile browsers. Wikipedia
  76. Web Storage API: Allows web applications to store data locally in the user’s browser. Wikipedia
  77. WebSocket: A communication protocol that provides full-duplex communication channels over a single TCP connection. Wikipedia
  78. XHTML: A reformulation of HTML as an XML application, which allows for stricter syntax and more robust document structures. Wikipedia
  79. XML Namespace: A method used in XML and HTML to avoid name conflicts by qualifying element and attribute names. Wikipedia
  80. XML Schema: A language used to define the structure and data types of XML documents. Wikipedia
  81. DOCTYPE Declaration: Specifies the version of HTML being used, ensuring correct rendering of the document. Wikipedia
  82. HTML5: The latest version of HTML that includes new elements and APIs for modern web applications. Wikipedia
  83. Accessibility: Ensuring that web content is usable by people with disabilities, often using ARIA attributes. Wikipedia
  84. ARIALANDMARK: A set of HTML attributes used to improve accessibility by defining regions and roles in a web page. Wikipedia
  85. ARIA Role: Attributes used to define the role of an element to assistive technologies. Wikipedia
  86. Data Attribute: Custom attributes added to HTML elements that store extra information. They start with data-, such as data-id="123". Wikipedia
  87. Document Object Model (DOM): A programming interface for web documents that represents the structure of a document as a tree of objects. Wikipedia
  88. Dynamic HTML (DHTML): A collection of technologies used to create interactive and animated web pages by combining HTML, CSS, and JavaScript. Wikipedia
  89. Meta Tag: An HTML tag that provides metadata about the document, such as character encoding and author. Wikipedia
  90. Semantic HTML: Using HTML tags that convey meaning about the content they enclose, such as <header>, <footer>, and <article>. Wikipedia
  91. Server-Sent Events (SSE): A technology allowing servers to push real-time updates to web clients over HTTP. Wikipedia
  92. Shadow DOM: A web standard that allows developers to encapsulate a part of a web page with its own HTML, CSS, and JavaScript. Wikipedia
  93. Web Component: A set of standards for creating reusable custom elements with encapsulated functionality. Wikipedia
  94. Custom Elements: A feature of Web Components that allows the creation of custom, reusable HTML tags. Wikipedia
  95. Template Literals: A feature in JavaScript allowing for embedded expressions and multi-line strings. Wikipedia
  96. Service Workers: JavaScript scripts that run in the background and can manage caching, push notifications, and background sync. Wikipedia
  97. Progressive Web Apps (PWA): Web applications that offer offline capabilities, push notifications, and fast performance similar to native apps. Wikipedia
  98. Content Security Policy (CSP): A security standard to prevent various types of attacks, including Cross-Site Scripting (XSS) and data injection. Wikipedia
  99. Cross-Origin Resource Sharing (CORS): A security feature that allows or restricts resources requested from another domain. Wikipedia
  100. URL: Uniform Resource Locator, the address used to access resources on the web. Wikipedia

Conclusion:

HTML is a fundamental technology for creating web pages and applications. Understanding the various terminologies and elements of HTML is crucial for developing well-structured, functional, and accessible web content. From basic tags like <a> and <div> to more advanced concepts like Web Storage and Shadow DOM, each terminology plays a unique role in web development. Mastery of these terms and their applications allows developers to build sophisticated web experiences, ensuring both usability and compatibility across different browsers and devices. As the web continues to evolve, keeping up with these terminologies and understanding their applications will remain essential for effective web development.

Leave a Reply

Your email address will not be published. Required fields are marked *

Resize text
Scroll to Top