Learning Portal @T9

  • HTML : Accessibility (A11Y) Techniques

    ARIA Roles, States, and Properties for Inclusive Web Development Web accessibility, often abbreviated as A11Y, is a critical aspect of modern web development aimed…


  • HTML  (PWAs): Integrating a Manifest File for Icons and Splash Screens

    Progressive Web Apps (PWAs) have redefined modern web development by combining the reach of the web with the capabilities of native applications. To create…


  • HTML DOM : CSS Object Model (CSSOM)

    The CSS Object Model (CSSOM) plays an essential role in the web rendering pipeline, working in tandem with the Document Object Model (DOM) to…


  • Compiler Design: Error Detection and Recovery in

    Error detection and recovery are crucial phases in the design of a compiler, as they ensure that errors in the source code are identified…


  • HTML : Server Sent Events

    Server-Sent Events (SSE) is a powerful feature in HTML5 that allows servers to push real-time updates to web applications over a single, unidirectional HTTP…


  • Compiler Design: Lexical Analysis

    Lexical analysis is a fundamental phase in the compilation process where the source code is converted into a sequence of tokens. These tokens are…


  • Compiler Design : Intermediate Code Generation

    Intermediate Code Generation (ICG) bridges the gap between high-level source code and low-level machine code in a compiler. It provides an abstraction that simplifies…


  • Compiler Design: Syntax Analysis

    Syntax analysis, or parsing, is the second stage in the compiler design pipeline, following lexical analysis. It validates the structural integrity of source code…


  • HTML : Charset

    The charset attribute in HTML defines the character encoding for the webpage, ensuring that all text and symbols are displayed correctly. Character encoding determines…


  • HTML : Global Attributes Reference (Part 2)

    15. draggable – Making Elements Draggable The draggable attribute specifies whether an element can be dragged by the user. This is particularly useful when…


  • HTML : DOM size Minimizing & Tag reduction

    In modern web development, optimizing the Document Object Model (DOM) is a crucial aspect of enhancing performance and user experience. A bloated DOM can…


  • HTML: Global Attribute Reference (part 1)

    Complete Reference for HTML Global Attributes with Code Examples HTML global attributes are essential tools in modern web development, providing universal functionality that can…


  • HTML Tag Structure: Opening and Closing Tags)

    In HTML, tags define the structure and content of a web page. Most tags follow a pair structure, consisting of an opening tag and…


  • HTML : Self Closing Tags

    Self-Closing Tags: <img>, <br>, <hr> Self-closing tags are a unique feature of HTML, designed to represent elements that do not require a closing tag.…


  • HTML : Meta Viewport Tag (Responsive design)

    Comprehensive Guide to the Meta Viewport Tag: Optimizing for Responsive Design The advent of mobile devices revolutionized web browsing, necessitating web pages that adapt…


  • HTML : Geolocation API (Fetch & Display Location)

    The Geolocation API is a powerful tool in modern web development, allowing developers to access and utilize the geographic location of a user’s device.…


  • HTML : Lazy Loading

    As web performance becomes increasingly vital to user experience, one of the most effective strategies to improve page load times is lazy loading. Lazy…


  • HTML : Accessibility Testing via Online Tools

    In the rapidly evolving digital landscape, accessibility testing has become a crucial step in web development. As the need for inclusive designs grows, online…


  • HTML : CSS Variables & Implementation

    Variables, also referred to as custom properties, are one of the most significant advancements in modern web design. They provide developers with a powerful…


  • HTML : Embedding Multimedia via <audio> & <video> Tags

    AwThe incorporation of multimedia content such as videos, audio, and external documents has become a cornerstone of modern web design. By embedding videos, audio,…