What Is XML (Extensible Markup Language)?

XML, or Extensible Markup Language, is a flexible, text-based format that structures, transports, and stores data. Designed to be both human-readable and machine-readable, XML allows developers and organizations to create custom tags that define, organize, and interpret information according to their specific needs. Unlike HTML, which has a predefined set of tags focused on web page presentation, XML provides a framework for data structure, not display.

Developed by the World Wide Web Consortium (W3C) in the late 1990s, XML was intended to streamline the sharing of structured data across different platforms, especially over the Internet. Over time, XML has evolved into a foundational technology for various fields, including web services, enterprise software, publishing, and configuration management. Its ability to maintain a consistent and structured format across disparate systems has secured its relevance even as newer data formats emerge.

In IT Asset Management (ITAM), structured and standardized data formats like XML are critical. XML provides a reliable foundation for recording, exchanging, and maintaining comprehensive asset data across various systems, helping IT teams manage hardware, software licenses, warranties, contracts, and compliance information with greater accuracy.

Key Features and Characteristics of XML

Several distinct features make XML powerful and versatile:

  • Customizable Tags: XML is not limited to a fixed vocabulary. Users can define any tags they require, which makes XML adaptable across industries and specific project needs.
  • Self-Descriptive Data: The tags encapsulate and explain the data, ensuring that any reader or system can understand the content without needing external documentation.
  • Platform Independence: XML files are universally compatible across various systems, from servers and desktops to mobile devices.
  • Unicode Support: XML supports multiple languages, enabling the representation of nearly every character set in use worldwide.
  • Strict Syntax Rules: Properly formed XML demands that every opening tag have a corresponding closing tag and that all elements be properly nested.
  • Hierarchical Structure: XML organizes data in a tree structure, allowing complex relationships and nested information.
  • Human and Machine Readability: Structured for parsing by machines while remaining clear enough for humans to read and modify directly.

These features help XML maintain consistent, clean, and organized datasets that can bridge vastly different systems.

How XML Works: Structure and Syntax Explained

XML uses a strict and straightforward syntax that emphasizes clarity and consistency. An XML document typically consists of:

  • Prolog: Optional, but often includes an XML declaration specifying version and encoding.
  • Elements: Defined by opening and closing tags (e.g., <title>My Document</title>).
  • Attributes: Provide additional information about elements (e.g., <book genre=”fiction”>).
  • Nesting: Elements can be nested inside one another to reflect hierarchical relationships.
  • Well-Formed Rules: Documents must have exactly one root element, all tags close properly, and attribute values must be quoted.

A simple XML example:

<?xml version=”1.0″ encoding=”UTF-8″?>

<library>

    <book genre=”fiction”>

        <title>The Great Gatsby</title>

        <author>F. Scott Fitzgerald</author>

        <year>1925</year>

    </book>

</library>

This structure makes it easy for machines and humans to parse, validate, and interpret the data.

Benefits of Using XML for Data Storage and Exchange

XML offers several advantages that have made it a mainstay in data management:

  • Universality: Being text-based, XML can be handled by virtually any programming language or software.
  • Flexibility: Developers can create new data structures as requirements evolve without altering the existing ecosystem.
  • Self-Documentation: Tags and attributes inherently explain the structure and meaning of the data.
  • Extensibility: XML can grow to accommodate new data types without disrupting existing systems.
  • Data and Presentation Separation: XML structures the data independently, enabling it to be presented through various stylesheets or transformations.
  • Support for Rigorous Validation: XML allows strict validation mechanisms through DTDs (Document Type Definitions) and XSDs (XML Schema Definitions).
  • Vendor Neutrality: XML’s open standard prevents lock-in to any specific vendor or technology stack.

These benefits continue to make XML an essential technology in enterprise environments, government systems, and cross-platform communication.

Common Use Cases for XML in Modern Technology

Even as newer technologies have emerged, XML continues to play an important role:

  • Web Services: Many APIs, especially SOAP-based ones, use XML for data exchange.
  • Configuration Files: Applications use XML for flexible configuration management (e.g., Microsoft Office settings Apache configurations).
  • Document Management: Formats like DOCX and ODF are based on XML.
  • Data Interchange: Industries like finance, healthcare, and publishing use XML to exchange information reliably across different systems.
  • Content Management Systems: XML structures can drive templates and manage content.
  • Mobile Applications: Android app layouts are defined in XML.

XML’s enduring presence is a testament to its reliability and clarity in handling complex data relationships.

How XML Supports Data Integration and Interoperability

XML enables seamless data integration across diverse systems:

  • Universal Parsing: XML parsers are ubiquitous, making integration easier without proprietary constraints.
  • Rich Metadata Inclusion: Detailed attributes and nested structures allow for highly contextualized data transfers.
  • Cross-Database Communication: Many databases can import, export, and even query XML natively.
  • Validation Against Standards: Schemas ensure that data follows agreed-upon standards, minimizing errors during integration.
  • Transformation Capabilities: XML data can be transformed into different formats using XSLT, allowing adaptation without manual rework.

In ITAM, integrating data from multiple sources—such as procurement systems, endpoint management tools, and service desks—relies heavily on structured and interoperable data formats like XML. Teqtivity leverages structured data formats like XML to streamline asset tracking, improve data accuracy, and support compliance. Contact us to see how we can transform your ITAM operations.

Popular Tools and Editors for Working with XML

Choosing the right tool depends on the scale, complexity, and workflow requirements of your project. A variety of tools simplify the creation and management of XML documents:

  • Notepad++: Lightweight and extendable with XML formatting plugins.
  • Oxygen XML Editor: Comprehensive support for authoring, validating, and transforming XML, DITA, XSLT, and XQuery.
  • Visual Studio Code: With XML plugins, VS Code offers features like auto-completion, formatting, and schema validation.
  • XMLSpy by Altova: A leading XML development environment offering graphical editing, schema development, and integration features.
  • Eclipse IDE: Robust XML editing capabilities through built-in and third-party plugins.
  • Altova MapForce: Facilitates data mapping between XML, databases, flat files, and other data formats.
  • Sublime Text: With appropriate extensions, it provides a clean and lightweight XML editing experience.

Best Practices for Writing and Managing XML Files

Good habits in writing and managing XML files help future-proof your documents and streamline system interactions. Following best practices ensures that XML documents remain readable, scalable, and maintainable:

  • Use Clear, Descriptive Tag Names: Tags should be intuitive to reduce confusion.
  • Maintain Consistent Formatting: Indent child elements and keep line breaks consistent.
  • Validate Regularly: Use schemas and validation tools to catch errors early.
  • Avoid Deep Nesting: Excessively nested structures become challenging to manage.
  • Comment Wisely: Include comments for complex sections, but avoid cluttering the file.
  • Use Namespaces for Large Projects: Namespaces prevent conflicts when combining XML files from different sources.
  • Limit Attribute Overuse: Attributes are useful for small bits of metadata; they reserve elements for complex structures.
  • Plan for Schema Evolution: Design your structure with flexibility so that future updates won’t break compatibility.

Glossary of Related Terms

Frequently Asked Questions

  • What does "extensible" mean in XML?

  • "Extensible" refers to XML's ability to allow users to create custom tags that fit their needs rather than relying on a fixed set of predefined tags.

  • Is XML still relevant today?

  • XML remains essential in industries that require complex data structures, rich metadata, and stringent validation, even though newer formats like JSON have gained popularity.

  • Can XML be used with databases?

  • Many databases support importing and exporting data as XML; some even allow querying XML data directly using extensions like SQL/XML.

  • What is the difference between well-formed and valid XML?

  • A well-formed XML document follows basic syntax rules such as proper nesting and having a single root element, while a valid XML document is well-formed and also conforms to a specified DTD or XSD schema.

  • Why is XML considered heavier than JSON?

  • XML’s use of descriptive tags and strict syntax results in larger file sizes than JSON, which uses a simpler key-value structure. However, XML offers more features for complex data representation.

  • Is XML case-sensitive?

  • XML is case-sensitive, meaning and <title> would be considered two different elements.</p> </div> </div> </li> </div> <div class="faq-item" itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"> <li class="q"> <h2 itemprop="name">How does XML handle data types?</h2> </li> <li class="a"> <div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"> <div itemprop="text"> <p>Basic XML treats all data as text, but schemas such as XSD can define specific data types like integers and dates for validation purposes.</p> </div> </div> </li> </div> <div class="faq-item" itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"> <li class="q"> <h2 itemprop="name">Can XML be styled for presentation?</h2> </li> <li class="a"> <div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"> <div itemprop="text"> <p>XML documents can be styled for presentation using technologies like XSLT, which transforms XML into formats such as HTML, text, or other XML structures.</p> </div> </div> </li> </div> <div class="faq-item" itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"> <li class="q"> <h2 itemprop="name">What are XML namespaces, and why are they important?</h2> </li> <li class="a"> <div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"> <div itemprop="text"> <p>Namespaces distinguish between identical element names from different vocabularies, allowing multiple XML schemas to coexist within a single document without conflict.</p> </div> </div> </li> </div> <div class="faq-item" itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"> <li class="q"> <h2 itemprop="name">Are there security concerns with XML?</h2> </li> <li class="a"> <div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"> <div itemprop="text"> <p>Improperly handled XML can be vulnerable to attacks like XML External Entity (XXE) injection, so disabling external entity parsing and using secure parsers is important.</p> </div> </div> </li> </div> </ul> </div> <script> // Accordian var action = "click"; var speed = "500"; jQuery(document).ready(function() { // Question handler jQuery('li.q').on(action, function() { $(this).toggleClass('active') jQuery(this).next().slideToggle(speed).siblings('li.a').slideUp(); }); }); // Table of Contents scroll to anchor document.addEventListener("DOMContentLoaded", function() { const tocContainer = document.querySelector(".ez-toc-widget-container"); if (!tocContainer) return; tocContainer.addEventListener("click", function(event) { const clicked = event.target.closest(".ez-toc-link"); if (!clicked) return; event.preventDefault(); // Prevent default anchor behavior (including URL update) const targetSelector = clicked.getAttribute("href"); const target = document.querySelector(targetSelector); if (target) { const offset = 80; // Adjust if you have a sticky header const top = target.getBoundingClientRect().top + window.scrollY - offset; window.scrollTo({ top: top, behavior: "smooth" }); } }); }); </script> </div> </div> </div> </section> <div class="modal fade" id="hubSpotModal" tabindex="-1"> <div class="modal-dialog modal-xl"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <!-- Start of Meetings Embed Script --> <!-- <div class="meetings-iframe-container" data-src="https://meetings.hubspot.com/teqtivity/demo-only?embed=true"></div> --> <div class="calendly-inline-widget" data-url="https://calendly.com/teqtivity/demo-only?hide_event_type_details=1&hide_gdpr_banner=1" style="min-width:320px;height:700px;"></div> <script type="text/javascript" data-osano="essential" src="https://assets.calendly.com/assets/external/widget.js" async></script> <!-- End of Meetings Embed Script --> </div> </div> </div> </div> </main><!-- #main --> <script> const hubspotModal = document.getElementById('hubSpotModal'); hubspotModal.addEventListener('hidden.bs.modal', function() { // Force hide (not needed usually, but included per your intent) hubspotModal.style.display = 'none'; const container = hubspotModal.querySelector('.modal-body'); container.innerHTML = '<div class="calendly-inline-widget" data-url="https://calendly.com/teqtivity/demo-only?hide_event_type_details=1&hide_gdpr_banner=1" style="min-width:320px;height:700px;"></div>'; const script = document.createElement('script'); script.src = 'https://assets.calendly.com/assets/external/widget.js'; script.setAttribute('data-osano', 'essential'); script.async = true; container.appendChild(script); console.log(container); }); </script> <footer id="colophon" class="site-footer"> <section class="pre-footer gradient-blue-bg"> <div class="container"> <div class="pre-footer-inner"> <div class="left-content-wrapper"> <div class="title" data-aos="fade-up" data-aos-delay="50"> <div class="title"> <h2>Take control of your IT assets with Teqtivity</h2> </div> <p><span style="font-weight: 400;">Schedule a product demonstration with one of our experts today. </span></p> </div> </div> <div class="button-wrapper" data-aos="fade-up" data-aos-delay="50"> <a class="btn btn-primary" href="https://old-int.teqtivity.com/get-started" target="_self"> Request a Demo </a> </div> </div> </div> </section> <div class="site-info"> <div class="container"> <div class="footer-links-block "> <div class="footer-block"> <div class="footer-block-middle footer-block-item"> <div class="footer_menu_class"><ul id="menu-footer-solutions-menu" class="menu"><li id="menu-item-4116" class="hide-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4116"><a href="javascript:void(0);">Menu Item</a> <ul class="sub-menu"> <li id="menu-item-4030" class="bold-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4030"><a href="javascript:void(0);">Our Products</a> <ul class="sub-menu"> <li id="menu-item-4035" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4035"><a href="https://old-int.teqtivity.com/it-asset-management">IT Asset Management</a></li> <li id="menu-item-6512" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6512"><a href="https://old-int.teqtivity.com/product-tour">Product Tour</a></li> </ul> </li> <li id="menu-item-4117" class="bold-item mt-3 menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4117"><a href="javascript:void(0);">Features</a> <ul class="sub-menu"> <li id="menu-item-4033" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4033"><a href="https://old-int.teqtivity.com/lifecycle-management">Lifecycle Management</a></li> <li id="menu-item-4036" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4036"><a href="https://old-int.teqtivity.com/inventory-management">Inventory Management</a></li> <li id="menu-item-4037" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4037"><a href="https://old-int.teqtivity.com/onboarding-offboarding">Onboarding & Offboarding</a></li> <li id="menu-item-4038" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4038"><a href="https://old-int.teqtivity.com/dashboards-reports">Dashboards & Reports</a></li> <li id="menu-item-4039" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4039"><a href="https://old-int.teqtivity.com/compliance-security">Compliance & Security</a></li> <li id="menu-item-4059" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4059"><a href="https://old-int.teqtivity.com/integrations">Integrations</a></li> <li id="menu-item-6792" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6792"><a href="https://old-int.teqtivity.com/sitemap">Sitemap</a></li> </ul> </li> </ul> </li> <li id="menu-item-4041" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4041"><a href="javascript:void(0);">Solutions</a> <ul class="sub-menu"> <li id="menu-item-4042" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4042"><a href="https://old-int.teqtivity.com/start-up">Start Up</a></li> <li id="menu-item-4043" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4043"><a href="https://old-int.teqtivity.com/mid-size">Mid Size</a></li> <li id="menu-item-4044" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4044"><a href="https://old-int.teqtivity.com/enterprise">Enterprise</a></li> </ul> </li> <li id="menu-item-4045" class="hide-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4045"><a href="javascript:void(0);">Menu Item</a> <ul class="sub-menu"> <li id="menu-item-4046" class="bold-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4046"><a href="javascript:void(0);">Industry</a> <ul class="sub-menu"> <li id="menu-item-4047" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4047"><a href="https://old-int.teqtivity.com/financial-services">Financial Services</a></li> <li id="menu-item-4048" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4048"><a href="https://old-int.teqtivity.com/construction">Construction</a></li> <li id="menu-item-4049" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4049"><a href="https://old-int.teqtivity.com/education">Education</a></li> <li id="menu-item-4050" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4050"><a href="https://old-int.teqtivity.com/healthcare">Healthcare</a></li> <li id="menu-item-4051" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4051"><a href="https://old-int.teqtivity.com/manufacturing">Manufacturing</a></li> <li id="menu-item-4052" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4052"><a href="https://old-int.teqtivity.com/tech">Tech</a></li> </ul> </li> </ul> </li> <li id="menu-item-4192" class="hide-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4192"><a href="javascript:void(0);">Menu Item</a> <ul class="sub-menu"> <li id="menu-item-4053" class="bold-item cursor-pointer menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4053"><a href="https://old-int.teqtivity.com/business-teams">Business Team</a> <ul class="sub-menu"> <li id="menu-item-4081" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4081"><a href="https://old-int.teqtivity.com/help-desk">Help Desk</a></li> <li id="menu-item-4126" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4126"><a href="https://old-int.teqtivity.com/management">Management</a></li> <li id="menu-item-4054" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4054"><a href="https://old-int.teqtivity.com/operations">Operations</a></li> <li id="menu-item-4125" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4125"><a href="https://old-int.teqtivity.com/supply-chain">Supply Chain</a></li> </ul> </li> </ul> </li> <li id="menu-item-7359" class="hide-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-7359"><a href="javascript:void(0);">Menu Item</a> <ul class="sub-menu"> <li id="menu-item-4198" class="bold-item cursor-pointer menu-item menu-item-type-custom menu-item-object-custom menu-item-4198"><a href="https://old-int.teqtivity.com/customers">Customers</a></li> <li id="menu-item-5407" class="bold-item cursor-pointer mt-3 menu-item menu-item-type-custom menu-item-object-custom menu-item-5407"><a href="https://old-int.teqtivity.com/pricing">Pricing</a></li> <li id="menu-item-4055" class="bold-item mt-3 menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4055"><a href="javascript:void(0);">Resources</a> <ul class="sub-menu"> <li id="menu-item-4056" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4056"><a href="https://old-int.teqtivity.com/blog">Blog</a></li> <li id="menu-item-4057" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4057"><a href="https://old-int.teqtivity.com/press">Press</a></li> <li id="menu-item-4058" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4058"><a href="https://old-int.teqtivity.com/faqs">FAQ</a></li> <li id="menu-item-6790" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6790"><a href="https://old-int.teqtivity.com/glossary">ITAM Glossary</a></li> </ul> </li> </ul> </li> <li id="menu-item-4061" class="hide-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4061"><a href="javascript:void(0);">Menu Item</a> <ul class="sub-menu"> <li id="menu-item-4185" class="bold-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4185"><a href="javascript:void(0);">Company</a> <ul class="sub-menu"> <li id="menu-item-4118" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4118"><a href="https://old-int.teqtivity.com/careers">Careers</a></li> <li id="menu-item-4119" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4119"><a href="https://old-int.teqtivity.com/security">Security</a></li> <li id="menu-item-4060" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4060"><a href="https://old-int.teqtivity.com/contact">Contact</a></li> </ul> </li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="footer-top"> <div class="container"> <div class="footer-block"> <div class="footer-block-left footer-block-item d-flex align-items-center"> <div class="widget-left"> <div class="logo-outer"> <a href="https://old-int.teqtivity.com/" class="custom-logo-link" rel="home"><img src="https://old-int.teqtivity.com/wp-content/uploads/2024/03/teqtivity-green-logo.svg" class="custom-logo" alt="Teqtivity – IT Asset Management Software" decoding="async" /></a> </div> <div class="social-icons"> <a href="https://www.facebook.com/teqtivity" target="_blank"> <img src="https://old-int.teqtivity.com/wp-content/uploads/2022/03/fb.svg" width="18" height="18" alt="http://Facebook"> </a> <a href="https://www.linkedin.com/company/teqtivity" target="_blank"> <img src="https://old-int.teqtivity.com/wp-content/uploads/2022/03/linkedin.svg" width="18" height="18" alt="http://Connect%20on%20Linkedin"> </a> <a href="https://twitter.com/teqtivity" target="_blank"> <img src="https://old-int.teqtivity.com/wp-content/uploads/2024/03/twitter-x.svg" width="18" height="18" alt=""> </a> <a href="https://bsky.app/profile/teqtivity.bsky.social" target="_blank"> <img src="https://old-int.teqtivity.com/wp-content/uploads/2025/01/bluesky-black-square-logo.svg" width="18" height="18" alt=""> </a> </div> </div> <div class="widget-right ms-4"> <img src="/wp-content/uploads/2024/06/soc.png" alt="SOC" loading="lazy" width="95" height="95" class="img-fuid"> </div> </div> <div class="footer-block-right footer-block-item d-none d-md-block"> </div> <div class="footer-block-right footer-block-item"> <div class="newsletter-wrap"> <h3> Sign up for the latest Teqtivity product announcements and news </h3> <iframe src="https://embeds.beehiiv.com/1b242086-cc83-4f21-b4f6-138c39deec04?slim=true" data-test-id="beehiiv-embed" height="52" frameborder="0" scrolling="no" style="margin: 0; border-radius: 0px !important; background-color: transparent;"></iframe> </div> </div> </div> </div> </div> <div class="footer-bottom"> <div class="container"> <div class="d-sm-block d-md-flex justify-content-between"> <div> © 2026 Teqtivity, Inc. All rights reserved. </div> <div> </div> </div> <div class="bottom-menu"> <div class="footer_bottom_menu_class"><ul id="menu-footer-bottom-menu" class="menu"><li id="menu-item-297" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-297"><a rel="privacy-policy" href="https://old-int.teqtivity.com/privacy-policy">Privacy Policy</a></li> <li id="menu-item-1405" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1405"><a href="https://old-int.teqtivity.com/software-privacy-policy">Software Privacy Policy</a></li> <li id="menu-item-2697" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2697"><a href="https://old-int.teqtivity.com/sitemap">Sitemap</a></li> <li id="menu-item-7896" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7896"><a href="https://old-int.teqtivity.com/whistleblower-policy">Whistleblower Policy</a></li> <li id="menu-item-8730" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8730"><a href="https://old-int.teqtivity.com/modern-slavery-statement">Modern Slavery Statement</a></li> </ul></div> </div> </div> </div> <div id="modal" class="full-image-model modal"> <div class="modal-content"> <span id="modal-close" class="modal-close">×</span> <img id="modal-content" alt="" width="800" height="600"> </div> </div> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-element-bundle.min.js"></script> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/teqube2022/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script id="afl-wc-utm-public-js-extra"> var afl_wc_utm_public = {"ajax_url":"https://old-int.teqtivity.com/wp-admin/admin-ajax.php","action":"afl_wc_utm_view","nonce":"","cookie_prefix":"afl_wc_utm_","cookie_expiry":{"days":90},"cookie_renewal":"force","cookie_consent_category":"statistics","domain_info":{"domain":"old-int.teqtivity.com","path":"/","mode":1},"last_touch_window":"1800","wp_consent_api_enabled":"","user_has_active_attribution":"0","attr_first_non_utm":"0","js_autorun":"1","consent_addon":"wp-consent-api","active_attribution":"1","js_merge_tag":"0","gtm_push":"0","cookie_force_reset_ts":"0","click_identifiers":["gclid","fbclid","msclkid"],"extra_params":[],"lt_utm_sec":"0","lt_utmc_sec":"0"}; //# sourceURL=afl-wc-utm-public-js-extra </script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/plugins/afl-wc-utm/public/js/afl-wc-utm-public.min.js?ver=2.31.0" id="afl-wc-utm-public-js"></script> <script id="ez-toc-scroll-scriptjs-js-extra"> var eztoc_smooth_local = {"scroll_offset":"50","add_request_uri":"","add_self_reference_link":""}; //# sourceURL=ez-toc-scroll-scriptjs-js-extra </script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/plugins/easy-table-of-contents/assets/js/smooth_scroll.min.js?ver=2.0.80" id="ez-toc-scroll-scriptjs-js"></script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/plugins/easy-table-of-contents/vendor/js-cookie/js.cookie.min.js?ver=2.2.1" id="ez-toc-js-cookie-js"></script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/plugins/easy-table-of-contents/vendor/sticky-kit/jquery.sticky-kit.min.js?ver=1.9.2" id="ez-toc-jquery-sticky-kit-js"></script> <script id="ez-toc-js-js-extra"> var ezTOC = {"smooth_scroll":"1","scroll_offset":"50","fallbackIcon":"\u003Cspan class=\"\"\u003E\u003Cspan class=\"eztoc-hide\" style=\"display:none;\"\u003EToggle\u003C/span\u003E\u003Cspan class=\"ez-toc-icon-toggle-span\"\u003E\u003Csvg style=\"fill: #363636;color:#363636\" xmlns=\"http://www.w3.org/2000/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"\u003E\u003Cpath d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"\u003E\u003C/path\u003E\u003C/svg\u003E\u003Csvg style=\"fill: #363636;color:#363636\" class=\"arrow-unsorted-368013\" xmlns=\"http://www.w3.org/2000/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"\u003E\u003Cpath d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"/\u003E\u003C/svg\u003E\u003C/span\u003E\u003C/span\u003E","chamomile_theme_is_on":""}; //# sourceURL=ez-toc-js-js-extra </script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/plugins/easy-table-of-contents/assets/js/front.min.js?ver=2.0.80-1768804992" id="ez-toc-js-js"></script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/themes/teqube2022/js/navigation.js?ver=1.0.9" id="teqube-navigation-js"></script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/themes/teqube2022/dist/js/aos.min.js?ver=0.1" id="teqube-aos.min-js"></script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/themes/teqube2022/dist/js/bootstrap.min.js?ver=0.1" id="teqube-bootstrap.min-js"></script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/themes/teqube2022/dist/js/smooth-scroll.min.js?ver=0.1" id="teqube-smooth-scroll.min-js"></script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/themes/teqube2022/dist/js/swiper-bundle.min.js?ver=0.1" id="teqube-swiper-bundle.min-js"></script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/themes/teqube2022/dist/js/swiped-events.min.js?ver=0.1" id="teqube-swipe-events.min-js"></script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/themes/teqube2022/dist/js/home.min.js?ver=0.1" id="teqube-home.min-js"></script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/themes/teqube2022/dist/js/ajax.min.js?ver=0.1" id="teqube-ajax.min-js"></script> <script data-osano="essential" src="https://old-int.teqtivity.com/wp-content/themes/teqube2022/dist/js/app.min.js?ver=0.1" id="teqube-app.min-js"></script> <!-- Usermaven - privacy-friendly analytics tool --> <script type="text/javascript"> (function () { window.usermaven = window.usermaven || (function () { (window.usermavenQ = window.usermavenQ || []).push(arguments); }) var t = document.createElement('script'), s = document.getElementsByTagName('script')[0]; t.defer = true; t.id = 'um-tracker'; t.setAttribute('data-tracking-host', 'https://um.teqtivity.com'); t.setAttribute('data-key', 'UMa7fOcYXK'); t.setAttribute('data-autocapture', 'true'); t.setAttribute('data-form-tracking', 'true'); t.setAttribute('data-privacy-policy', 'strict'); t.setAttribute('data-randomize-url', 'true'); t.src = 'https://um.teqtivity.com/lib.js'; s.parentNode.insertBefore(t, s); })(); </script> <!-- / Usermaven --> <script> (function() { // Wait for both grecaptcha and gform to be available function checkAndRender() { if (typeof grecaptcha !== 'undefined' && typeof grecaptcha.render === 'function' && typeof gform !== 'undefined' && typeof gform.recaptcha !== 'undefined' && typeof gform.recaptcha.renderRecaptcha === 'function') { // Check if there are unrendered CAPTCHA fields var unrenderedCaptcha = document.querySelector('.ginput_recaptcha:not(.gform-initialized)'); if (unrenderedCaptcha) { gform.recaptcha.renderRecaptcha(); } } else { // Try again after a short delay setTimeout(checkAndRender, 100); } } // Start checking when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', checkAndRender); } else { checkAndRender(); } // Also listen for Gravity Forms post-render event if (typeof document.addEventListener !== 'undefined') { document.addEventListener('gform/postRender', function() { setTimeout(checkAndRender, 500); }); } })(); </script> <script> jQuery(document).ready(function($) { $(".modal-target").on("click", function() { var url = $(this).data("url"); if (url == "") { $('#modal-content').attr('src', ""); $(".full-image-model").css("display", "none"); } else { $(".full-image-model").css("display", "block"); $('#modal-content').attr('src', url); } }); $(".modal-close").on("click", function() { $('#modal-content').attr('src', ""); $(".full-image-model").css("display", "none"); }); }); </script> <script type="text/javascript" async src="https://embeds.beehiiv.com/attribution.js"></script> <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script> <script> var swiper = new Swiper(".mySwiper", { slidesPerView: 2, spaceBetween: 30, loop: true, navigation: { nextEl: ".swiper-button-next", prevEl: ".swiper-button-prev", }, breakpoints: { 320: { slidesPerView: 1, spaceBetween: 20, }, 640: { slidesPerView: 2, spaceBetween: 20, }, }, }); </script> </body> </html> <!-- Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin Served from: old-int.teqtivity.com @ 2026-04-10 13:01:09 by W3 Total Cache -->