<!DOCTYPE html>
<html lang="en">

<head>
    <title>Tpoint Tech - Free Online Tutorials</title>
    <meta name="keywords" content="tpoint, tech, tpoint tech, tpointtech, free tutorial, free online tutorial">
<meta name="description" content="Tpoint Tech - Tutorials, Free Online Tutorials, tpointtech provides tutorials and interview questions of all technology like java tutorial, android, java frameworks, javascript, ajax, core java, sql, python, php, c language etc. for beginners and professionals.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="theme-color" content="#4CAF50">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="theme-color" content="#4CAF50">
<meta property="og:title" content="Tutorials - Tpoint Tech">
<meta property="og:description" content="Tpoint Tech - Tutorials, Free Online Tutorials, tpointtech provides tutorials and interview questions of all technology like java tutorial, android, java frameworks, javascript, ajax, core java, sql, python, php, c language etc. for beginners and professionals.">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="article">
<meta name="twitter:title" property="og:title" content="Tutorials - Tpoint Tech">
<meta name="twitter:description" property="og:description" content="Tpoint Tech - Tutorials, Free Online Tutorials, tpointtech provides tutorials and interview questions of all technology like java tutorial, android, java frameworks, javascript, ajax, core java, sql, python, php, c language etc. for beginners and professionals.">
<meta property="og:url" content="https://www.tpointtech.com">
<meta property="og:site_name" content="www.tpointtech.com">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@tpointtech">
<meta name="twitter:domain" content="www.tpointtech.com">
<meta name="twitter:creator" content="@tpointtech">
<meta name="msvalidate.01" content="3F62B530029BB27103D8FD4280E7D236" />
<meta name="yandex-verification" content="b9cded21671d8b05" />

    <!-- canonical-->
<link rel="canonical" href="https://www.tpointtech.com">

        <!-- Favicon -->
        <link rel="icon" type="image/x-icon" href="/static/img/favicon2.png">
        <!-- Google Web Fonts -->
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link
            href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500&family=Roboto:wght@400;500;700&display=swap"
            rel="stylesheet">

        <!-- Icon Font Stylesheet -->
        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
        <link rel="stylesheet"
            href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

        <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">

        <!-- Libraries Stylesheet -->
        <link href="/static/lib/animate/animate.min.css" rel="stylesheet">
        <link href="/static/lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
        
<style>
    /* announcement css*/
   
.code-container {
        /* background: linear-gradient(135deg, #2d2d2d, #1a1a1a); */
        background-color: #000906;
        color: #fff;
        border-radius: 12px;
        padding: 15px;
        margin: auto;
       
    }

    /* Header styling with a modern font */
    .code-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* background: #333; */
        background: #fff;
        padding: 12px 16px;
        border-radius: 12px;
        /* border-top-left-radius: 12px;
        border-top-right-radius: 12px; */
        font-size: 18px;
        font-family: 'Roboto', sans-serif;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .code-header span {
        color: #000906;
    }

    /* Text styling for the announcement message */
    .code-container p {
        font-family: 'Arial', sans-serif;
        font-size: 16px;
        line-height: 1.6;
        margin-top: 10px;
    }

    /* A subtle animation effect for the code block text */
    .code-container p {
        opacity: 0;
        animation: fadeIn 2s forwards;
    }

    @keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }
    /* Fixed footer with marquee-like effect */
    .fixed-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--primary);
        color: white;
        padding: 10px 0;
        text-align: center;
        z-index: 9999;
        font-family: 'Arial', sans-serif;
        font-size: 16px;
        font-weight: 500;
    }

    /* Marquee effect using CSS */
    .scrolling-message {
        display: inline-block;
        white-space: nowrap;
        animation: scroll-left 20s linear infinite;
    }

    /* Scroll animation */
    @keyframes scroll-left {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
</style>
<script>
    // Function to apply theme colors
    function applyTheme(colors) {
        const root = document.documentElement;
        Object.keys(colors).forEach(key => {
            root.style.setProperty(key, colors[key]);
        });
    }
  
    // Load theme colors from localStorage on page load
    window.addEventListener('load', () => {
        const savedTheme = JSON.parse(localStorage.getItem('themeColors'));
        if (savedTheme) {
            applyTheme(savedTheme);
        }
    });
  
    // Save selected theme colors to localStorage
    function setThemeColors(newColors) {
        localStorage.setItem('themeColors', JSON.stringify(newColors));
        applyTheme(newColors);
    }
  </script>
  
  
  <!-- DARK MODE JS -->
  <script>
   function setThemeColors(colors) {
      const root = document.documentElement;
      Object.keys(colors).forEach(key => {
          root.style.setProperty(key, colors[key]);
      });
      localStorage.setItem('themeColors', JSON.stringify(colors));
  }
  
  function toggleDarkMode() {
        const body = document.body;
        const icon = document.getElementById('dark-mode-icon');
        const logo = document.getElementById('logo'); // Get logo element
        const isNightMode = body.classList.toggle('night-mode');
  
        if (isNightMode) {
            icon.classList.remove('fa-moon');
            icon.classList.add('fa-sun');
            localStorage.setItem('theme', 'night');
  
            // Change to dark mode logo
            logo.src = "https://tpointtech-images.s3.amazonaws.com/static/images/light-logo.png";
        } else {
            icon.classList.remove('fa-sun');
            icon.classList.add('fa-moon');
            localStorage.setItem('theme', 'day');
  
            // Change to light mode logo
            logo.src = "https://tpointtech-images.s3.amazonaws.com/static/images/dark-logo.png";
        }
    }
  
    // Load theme settings on page load
    window.addEventListener('load', () => {
        const savedThemeColors = JSON.parse(localStorage.getItem('themeColors'));
        const savedTheme = localStorage.getItem('theme');
        const logo = document.getElementById('logo'); // Get logo element
  
        if (savedThemeColors) {
            setThemeColors(savedThemeColors);
        }
  
        if (savedTheme === 'night') {
            document.body.classList.add('night-mode');
            document.getElementById('dark-mode-icon').classList.remove('fa-moon');
            document.getElementById('dark-mode-icon').classList.add('fa-sun');
  
            // Change to dark mode logo on page load
            logo.src = "https://tpointtech-images.s3.amazonaws.com/static/images/light-logo.png";
        } else {
            // Default to light mode logo
            logo.src = "https://tpointtech-images.s3.amazonaws.com/static/images/dark-logo.png";
        }
    });
  </script>

                  <!-- Customized Bootstrap Stylesheet -->
        <link href="/static/css/bootstrap.min.css" rel="stylesheet">
        
        <!-- Template Stylesheet -->
        <link href="/static/css/style.css" rel="stylesheet">

</head>

<body onload="updateImageLink()">

    <!-- Navbar & Hero Start -->

    <div class="sticky-top p-0" style="position: sticky; background-color: var(--sidebar);"> <!-- class="bg-primary p-0" -->
        <!-- Navbar & Hero Start -->
        <div class="container-fluid">
            <div class="position-relative p-0">
                <nav class="navbar navbar-expand-lg navbar-light px-4 py-lg-0">
                    <a href="/" class="navbar-brand p-0">
                        <img src="https://tpointtech-images.s3.amazonaws.com/static/images/dark-logo.png" alt="Logo" id="logo">
                    </a>

                    <div class="jtp-nav homepage">
                        <button class="navbar-toggler float-left" type="button" data-bs-toggle="collapse"
                            data-bs-target="#navbarCollapse">
                            <span class="fa fa-bars"></span>
                        </button>
                    </div>
                    <div class="collapse navbar-collapse" id="navbarCollapse">
                       
                      
                          <div class="navbar-nav">
                            <div class="nav-item show">
                              <a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" data-bs-auto-close="false" style="padding: 2.2rem;">Tutorials</a>
                              <div id="tutorials" class="dropdown-menu w-100 mt-0" >
                              <div class="container">
                                <div class="row overlay jtp-megamenu">
                                  <div class="mega_menuClose">
                                <button class="jtp-btn">
                                  <span onclick="megaMenu_close('tutorials')" class="float-end jtp-xxxlarge jtp-display-topright closeaccbtn jtp-hide-small" style="float: right;color:white;padding-right: 4rem;">×</span><br>
                                </button>
                              </div>
                                <div class="mega_menu">
                                  <div class="col-md-6 col-lg-3 mb-3 mb-lg-0">
                                    <div class="list-group list-group-flush">
                                      <h3 class="jtp-list-group-item">Python</h3>
                                      <a href="/python-tutorial" class="jtp-list-group-item list-group-item-action">Python</a>
                                      <a href="/django-tutorial" class="jtp-list-group-item list-group-item-action">Django</a>
                                      <a href="/numpy-tutorial" class="jtp-list-group-item list-group-item-action">Numpy</a>
                                      <a href="/python-pandas" class="jtp-list-group-item list-group-item-action">Pandas</a>
                                      <a href="/python-tkinter" class="jtp-list-group-item list-group-item-action">Tkinter</a>
                                      <a href="/pytorch" class="jtp-list-group-item list-group-item-action">Pytorch</a>
                                      <a href="/flask-tutorial" class="jtp-list-group-item list-group-item-action">Flask</a>
                                      <a href="/opencv" class="jtp-list-group-item list-group-item-action">OpenCV</a>
                                      <h3 class="jtp-list-group-item">AI, ML and Data Science</h3>
                                      <a href="/artificial-intelligence-ai" class="jtp-list-group-item list-group-item-action">Artificial Intelligence</a>
                                      <a href="/machine-learning" class="jtp-list-group-item list-group-item-action">Machine Learning</a>
                                      <a href="/data-science" class="jtp-list-group-item list-group-item-action">Data Science</a>
                                      <a href="/deep-learning" class="jtp-list-group-item list-group-item-action">Deep Learning</a>
                                      <a href="/tensorflow" class="jtp-list-group-item list-group-item-action">TensorFlow</a>
                                      <a href="/artificial-neural-network" class="jtp-list-group-item list-group-item-action">Artificial Neural Network</a>
                                      <a href="/matplotlib" class="jtp-list-group-item list-group-item-action">Matplotlib</a>
                                      <a href="/python-scipy" class="jtp-list-group-item list-group-item-action">Python Scipy</a>
                                    </div>
                                  </div>
                                  <div class="col-md-6 col-lg-3 mb-3 mb-lg-0">
                                    <div class="list-group list-group-flush">
                                      <h3 class="jtp-list-group-item">Java</h3>
                                      <a href="/java-tutorial" class="jtp-list-group-item list-group-item-action">Java</a>
                                      <a href="/servlet-tutorial" class="jtp-list-group-item list-group-item-action">Servlet</a>
                                      <a href="/jsp-tutorial" class="jtp-list-group-item list-group-item-action">JSP</a>
                                      <a href="/spring-boot-tutorial" class="jtp-list-group-item list-group-item-action">Spring Boot</a>
                                      <a href="/spring-tutorial" class="jtp-list-group-item list-group-item-action">Spring Framework</a>
                                      <a href="/hibernate-tutorial" class="jtp-list-group-item list-group-item-action">Hibernate</a>
                                      <a href="/javafx-tutorial" class="jtp-list-group-item list-group-item-action">JavaFX</a>
                                      <a href="/java-web-services-tutorial" class="jtp-list-group-item list-group-item-action">Java Web Services</a>
                                      <h3 class="jtp-list-group-item">B.Tech and MCA</h3>
                                      <a href="/dbms-tutorial" class="jtp-list-group-item list-group-item-action">DBMS</a>
                                      <a href="/data-structure-tutorial" class="jtp-list-group-item list-group-item-action">Data Structures</a>
                                      <a href="/operating-system" class="jtp-list-group-item list-group-item-action">Operating System</a>
                                      <a href="/computer-network-tutorial" class="jtp-list-group-item list-group-item-action">Computer Network</a>
                                      <a href="/daa-tutorial" class="jtp-list-group-item list-group-item-action">DAA</a>
                                      <a href="/computer-organization-and-architecture-tutorial" class="jtp-list-group-item list-group-item-action">Computer Organization</a>
                                      <a href="/software-engineering" class="jtp-list-group-item list-group-item-action">Software Engineering</a>
                                      <a href="/data-mining" class="jtp-list-group-item list-group-item-action">Data Mining</a>
                                    </div>
                                  </div>
                                  <div class="col-md-6 col-lg-3 mb-3 mb-md-0 jtp-backend">
                                    <div class="list-group list-group-flush">
                                      <h3 class="jtp-list-group-item">Web Technology</h3>
                                      <a href="/html-tutorial" class="jtp-list-group-item list-group-item-action">HTML</a>
                                      <a href="/css-tutorial" class="jtp-list-group-item list-group-item-action">CSS</a>
                                      <a href="/javascript-tutorial" class="jtp-list-group-item list-group-item-action">JavaScript</a>
                                      <a href="/jquery-tutorial" class="jtp-list-group-item list-group-item-action">Jquery</a>
                                      <a href="/angular-8" class="jtp-list-group-item list-group-item-action">Angular-8</a>
                                      <a href="/reactjs-tutorial" class="jtp-list-group-item list-group-item-action">React JS</a>
                                      <a href="/react-native-tutorial" class="jtp-list-group-item list-group-item-action">React Native</a>
                                      <a href="/nodejs-tutorial" class="jtp-list-group-item list-group-item-action">Node JS</a>
                                      <h3 class="jtp-list-group-item">Software Testing</h3>
                                      <a href="/software-testing-tutorial" class="jtp-list-group-item list-group-item-action">Software Testing</a>
                                      <a href="/selenium-tutorial" class="jtp-list-group-item list-group-item-action">Selenium</a>
                                      <a href="/jira-tutorial" class="jtp-list-group-item list-group-item-action">JIRA</a>
                                      <a href="/jmeter-tutorial" class="jtp-list-group-item list-group-item-action">JMeter</a>
                                      <a href="/postman" class="jtp-list-group-item list-group-item-action">Postman</a>
                                      <a href="/testng-tutorial" class="jtp-list-group-item list-group-item-action">TestNG</a>
                                      <a href="/soapui" class="jtp-list-group-item list-group-item-action">SoapUI</a>
                                      <a href="/cucumber-testing" class="jtp-list-group-item list-group-item-action">Cucumber</a>
                                    </div>
                                  </div>
                                </div>
                                </div>
                              </div>
                          </div>
                          </div>
                            <div class="nav-item show">
                              <a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" data-bs-auto-close="false" style="padding: 2.2rem;">Interview</a>
                              <div id="interview-questions" class="dropdown-menu w-100 mt-0" >
                              <div class="container">
                                <div class="row overlay jtp-megamenu">
                                  <div class="mega_menuClose">
                                <button class="jtp-btn">
                                  <span onclick="megaMenu_close('interview-questions')" class="float-end jtp-xxxlarge jtp-display-topright closeaccbtn jtp-hide-small" style="float: right;color:white;padding-right: 4rem;">×</span><br>
                                </button>
                                </div>
                                <div class="mega_menu">
                                  <div class="col-md-6 col-lg-3 mb-3 mb-lg-0">
                                    <div class="list-group list-group-flush">
                                      <h3 class="jtp-list-group-item">Technical Interview</h3>
                                      <a href="/c-interview-questions" class="jtp-list-group-item list-group-item-action">C</a>
                                      <a href="/cpp-interview-questions" class="jtp-list-group-item list-group-item-action">C++</a>
                                      <a href="/php-interview-questions" class="jtp-list-group-item list-group-item-action">Php</a>
                                      <a href="/corejava-interview-questions" class="jtp-list-group-item list-group-item-action">Java</a>
                                      <a href="/python-interview-questions" class="jtp-list-group-item list-group-item-action">Python</a>
                                      <a href="/javascript-interview-questions" class="jtp-list-group-item list-group-item-action">JavaScript</a>
                                      <a href="/typescript-interview-questions" class="jtp-list-group-item list-group-item-action">TypeScript</a>
                                      <h3 class="jtp-list-group-item">Java Interview</h3>
                                      <a href="/jdbc-interview-questions" class="jtp-list-group-item list-group-item-action">JDBC</a>
                                      <a href="/servletinterview" class="jtp-list-group-item list-group-item-action">Servlet</a>
                                      <a href="/maven-interview-questions" class="jtp-list-group-item list-group-item-action">Maven</a>
                                      <a href="/jenkins-interview-questions" class="jtp-list-group-item list-group-item-action">Jenkins</a>
                                      <a href="/spring-interview-questions" class="jtp-list-group-item list-group-item-action">Spring</a>
                                      <a href="/spring-boot-interview-questions" class="jtp-list-group-item list-group-item-action">Spring Boot</a>
                                      <a href="/jdb-interview-questions" class="jtp-list-group-item list-group-item-action">JDB</a>
                                      <a href="/hibernate-interview-questions" class="jtp-list-group-item list-group-item-action">Hibernate</a>
                                      <a href="/jsf-interview-questions" class="jtp-list-group-item list-group-item-action">JSF</a>
                                    </div>
                                  </div>
                                  <div class="col-md-6 col-lg-3 mb-3 mb-lg-0">
                                    <div class="list-group list-group-flush">
                                      <h3 class="jtp-list-group-item">Web Interview</h3>
                                      <a href="/html-interview-questions" class="jtp-list-group-item list-group-item-action">HTML</a>
                                      <a href="/css-interview-questions" class="jtp-list-group-item list-group-item-action">CSS</a>
                                      <a href="/javascript-interview-questions" class="jtp-list-group-item list-group-item-action">JavaScript</a>
                                      <a href="/jquery-interview-questions" class="jtp-list-group-item list-group-item-action">Jquery</a>
                                      <a href="/angular-interview-questions" class="jtp-list-group-item list-group-item-action">Angular</a>
                                      <a href="/node-js-interview-questions" class="jtp-list-group-item list-group-item-action">Node-JS</a>
                                      <a href="/ajax-interview-questions" class="jtp-list-group-item list-group-item-action">AJAX</a>
                                      <h3 class="jtp-list-group-item">Database Interview</h3>
                                      <a href="/dbms-interview-questions" class="jtp-list-group-item list-group-item-action">DBMS</a>
                                      <a href="/sql-interview-questions" class="jtp-list-group-item list-group-item-action">SQL</a>
                                      <a href="/pl-sql-interview-questions" class="jtp-list-group-item list-group-item-action">PL/SQL</a>
                                      <a href="/oracle-interview-questions" class="jtp-list-group-item list-group-item-action">Oracle</a>
                                      <a href="/mysql-interview-questions" class="jtp-list-group-item list-group-item-action">MySQL</a>
                                      <a href="/mongodb-interview-questions" class="jtp-list-group-item list-group-item-action">MongoDB</a>
                                      <a href="/redis-interview-questions-and-answers" class="jtp-list-group-item list-group-item-action">Redis</a>
                                      <a href="/mariadb-interview-questions" class="jtp-list-group-item list-group-item-action">MariaDB</a>
                                    </div>
                                  </div>
                                  <div class="col-md-6 col-lg-3 mb-3 mb-md-0 jtp-backend">
                                    <div class="list-group list-group-flush">
                                      <h3 class="jtp-list-group-item">Company Interviews</h3>
                                      <a href="/ibm-interview-questions" class="jtp-list-group-item list-group-item-action">IBM</a>
                                      <a href="/adobe-interview-questions" class="jtp-list-group-item list-group-item-action">Adobe</a>
                                      <a href="/microsoft-interview-questions" class="jtp-list-group-item list-group-item-action">Microsoft</a>
                                      <a href="/amazon-interview-questions" class="jtp-list-group-item list-group-item-action">Amazon</a>
                                      <a href="/tcs-interview-questions" class="jtp-list-group-item list-group-item-action">TCS</a>
                                      <a href="/hcl-interview-questions" class="jtp-list-group-item list-group-item-action">HCL</a>
                                      <a href="/wipro-interview-questions" class="jtp-list-group-item list-group-item-action">Wipro</a>
                                      <a href="/dxc-technology-interview-questions" class="jtp-list-group-item list-group-item-action">DXC</a>
                                      <a href="/accenture-interview-questions" class="jtp-list-group-item list-group-item-action">Accenture</a>
                                      <a href="/capgemini-interview-questions" class="jtp-list-group-item list-group-item-action">Capgemini</a>
                                      <a href="/spacex-interview-questions" class="jtp-list-group-item list-group-item-action">Space X</a>
                                      <a href="/ericsson-interview-questions" class="jtp-list-group-item list-group-item-action">Ericsson</a>
                                      <a href="/infosys-interview-questions" class="jtp-list-group-item list-group-item-action">Infosy</a>
                                      <a href="/igate-interview-questions" class="jtp-list-group-item list-group-item-action">IGate</a>
                                      <a href="/exl-interview-questions" class="jtp-list-group-item list-group-item-action">EXL</a>
                                      <a href="/indiamart-interview-questions" class="jtp-list-group-item list-group-item-action">IndiaMART</a>
                                      <a href="/sapient-interview-questions" class="jtp-list-group-item list-group-item-action">Sapient</a>
                                    </div>
                                  </div>
                                </div>
                                </div>
                              </div>
                          </div>
                          </div>
            
                          <div class="nav-item show">
                            <a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" data-bs-auto-close="false" style="padding: 2.2rem;">Compiler</a>
                            <div id="compiler-menu" class="dropdown-menu w-100 mt-0" >
                              <div class="container">
                                <div class="row overlay jtp-megamenu">
                                  <div class="mega_menuClose">
                                    <button class="jtp-btn">
                                      <span onclick="megaMenu_close('compiler-menu')" class="float-end jtp-xxxlarge jtp-display-topright closeaccbtn jtp-hide-small" style="float: right; color: white; padding-right: 4rem;">×</span><br>
                                    </button>
                                  </div>
                                 
                                  
                                  <div class="mega_menu">
                                    <div class="col-md-6 col-lg-6 mb-3 mb-lg-0">
                                        <div class="list-group list-group-flush">
                                            <h3 class="jtp-list-group-item">Online Compilers</h3>
                                            <a href="/compiler/python" class="jtp-list-group-item list-group-item-action">
                                                <i class="fab fa-python"></i> Python Online Compiler
                                            </a>
                                            <a href="/compiler/java" class="jtp-list-group-item list-group-item-action">
                                              <span style="font-family: Arial, sans-serif; font-size: 22px; font-weight: bold;">J</span>
                                              Java Online Compiler
                                            </a>
                                            <a href="/compiler/php" class="jtp-list-group-item list-group-item-action">
                                                <i class="fab fa-php"></i> PHP Online Compiler
                                            </a>
                                            <a href="/compiler/c" class="jtp-list-group-item list-group-item-action">
                                              <i class="fas fa-code"></i> C Online Compiler
                                          </a>
                                          <a href="/compiler/cpp" class="jtp-list-group-item list-group-item-action">
                                              <i class="fas fa-code"></i> C++ Online Compiler
                                          </a>
                                          <a href="/compiler/html" class="jtp-list-group-item list-group-item-action">
                                            <i class="fab fa-html5"></i> HTML Online Compiler
                                        </a>
                                        <a href="/compiler/javascript" class="jtp-list-group-item list-group-item-action">
                                            <i class="fab fa-js"></i> JavaScript Online Compiler
                                        </a>
                                        <a href="/compiler/typescript" class="jtp-list-group-item list-group-item-action">
                                            <i class="fab fa-js-square"></i> TypeScript Online Compiler
                                        </a>
                                      
                                        <a href="/compiler/r" class="jtp-list-group-item list-group-item-action">
                                          <i class="fas fa-chart-line"></i> R Online Compiler
                                      </a>
                                      <a href="/compiler/swift" class="jtp-list-group-item list-group-item-action">
                                        <span style="font-family: Arial, sans-serif; font-size: 20px; font-weight: bold;">Sw</span> Swift Online Compiler
                                    </a>
                                        </div>
                                    </div>
                                  
                                   
                                </div>
                                
                                </div>
                              </div>
                            </div>
                          </div>
                          
                         
            
                          
                          </div>
                          <ul class="d-flex">
                            <li>
                              <div onclick="toggleDarkMode()" class="theme-icon dark-mode-icon">
                                  <i id="dark-mode-icon" class="fas fa-moon"></i>
                              </div>
                          </li>
                          <li>
                            <div onclick="setThemeColors({'--primary': '#059862', '--secondary': '#B6DDE2', '--light': '#FFFFFF', '--dark': '#1C2833', '--sidebar': '#eef7f0', '--hoverprimary': '#05593a', '--codecompile': '#dce8dc'})" class="theme-icon" style="background-color: #059862;"></div>
                        </li>
                          <li>
                            <div onclick="setThemeColors({'--primary': '#0D4549', '--secondary': '#b6dde2', '--light': '#FFFFFF', '--dark': '#17202A', '--sidebar': '#F0FAFB', '--hoverprimary': '#0b3133', '--codecompile': '#d9e5e5'})" class="theme-icon" style="background-color: #0D4549;"></div>
                        </li>
                          
                         
                            <li>
                                <div onclick="setThemeColors({'--primary': '#231760', '--secondary': '#B6DDE2', '--light': '#FFFFFF', '--dark': '#1D1D27', '--sidebar': '#e7f6fd', '--hoverprimary': '#0b3133', '--codecompile': '#d9e5e5'})" class="theme-icon" style="background-color: #231760;"></div>
                            </li>
                      
                            <li>
                                <div onclick="setThemeColors({'--primary': '#286562', '--secondary': '#B6DDE2', '--light': '#FFFFFF', '--dark': '#1D1D27', '--sidebar': '#ECF0F1', '--hoverprimary': '#0b3133', '--codecompile': '#d9e5e5'})" class="theme-icon" style="background-color: #286562;"></div>
                            </li>
                          </ul>                       
                      </div>
                </nav>
                
            </div>
        </div>
        <div class="borderedelement"></div>
    </div>

    <!-- menu link start-->
    <div id="link" style="clear:both;position:sticky;z-index: 99;">
        <div class="ddsmoothmenu">
          <span>
            <button class="jt-nav float-left accordion accordion-flush" type="button" data-bs-toggle="jt-nav" data-bs-target="#navbarCollapse" onclick="toggleSidebar()" style="color: white;width: 50px;margin-top:8px;margin-left: 20px;font-size:20px;background:none;box-shadow: none;border:none;">
              <span class="fa fa-bars"></span>
            </button>
          </span>
          
     
             <ul class="nav" style="margin-top:-20px;display: inline-flex;margin-left: auto;">
            <!--<li class="nav-item">
                <a class="nav-link" href="/"> <img src="https://static.javatpoint.com/images/icon/home.png" alt="home">Home</a>
              </li>-->
              <li class="nav-item">
                <a class="nav-link" href="/python-tutorial"><img src="https://images.tpointtech.com/images/icon/python.png" alt="python"> Python</a>
              </li>
              <li class="nav-item">
                <a class="nav-link" href="/java-tutorial"><img src="https://images.tpointtech.com/images/icon/java.png" alt="java"> Java</a>
              </li>
              <li class="nav-item">
                <a class="nav-link" href="/javascript-tutorial"><img src="https://images.tpointtech.com/images/icon/js.png" alt="javascript"> JavaScript</a>
              </li>
               <li class="nav-item">
                  <a class="nav-link" href="/sql-tutorial"><img src="https://images.tpointtech.com/images/icon/sql.png" alt="sql"> SQL</a>
              </li>
              <li class="nav-item">
                  <a class="nav-link" href="/cpp-tutorial"><img src="https://images.tpointtech.com/images/icon/cpp.png" alt="c++"> C++</a>
              </li>
              <li class="nav-item">
                  <a class="nav-link" href="/html-tutorial"> <img src="https://images.tpointtech.com/images/icon/html.png" alt="html"> HTML</a>
              </li>
              <li class="nav-item">
                  <a class="nav-link" href="/css-tutorial"> <img src="https://images.tpointtech.com/images/icon/css.png" alt="css"> CSS</a>
              </li>
              <li class="nav-item">
                <a class="nav-link" href="/reactjs-tutorial"> <img src="https://images.tpointtech.com/images/icon/react1.png" alt="react"> React</a>
            </li>
               <li class="nav-item">
                <a class="nav-link" href="/c-programming-language-tutorial"><img src="https://images.tpointtech.com/images/icon/c.png" alt="c"> C</a>
            </li>
            <li class="nav-item">
                  <a class="nav-link" href="/c-sharp-tutorial"><img src="https://images.tpointtech.com/images/icon/csharp.png" alt="c#"> C#</a>
              </li>
              <li class="nav-item">
                <a class="nav-link" href="/php-tutorial"><img src="https://images.tpointtech.com/images/icon/php.png" alt="php"> PHP</a>
            </li>
            <li class="nav-item">
                <a class="nav-link" href="/mysql-tutorial"><img src="https://images.tpointtech.com/images/icon/mysql.png" alt="MySQL"> MySQL</a>
            </li>
            <li class="nav-item">
                <a class="nav-link" href="/artificial-intelligence-ai"><img src="https://images.tpointtech.com/images/icon/artificial-intelligence.png" alt="Artificial Intelligence"> AI</a>
            </li>
            <li class="nav-item">
                <a class="nav-link" href="/machine-learning"><img src="https://images.tpointtech.com/images/icon/ml.png" alt="Machine Learning"> ML</a>
            </li>
            <li class="nav-item">
                  <a class="nav-link" href="/data-structure-tutorial"><img src="https://images.tpointtech.com/images/icon/ds.png" alt="data structures"> DS</a>
              </li>
             <li class="nav-item">
                <a class="nav-link" href="/dbms-tutorial"><img src="https://images.tpointtech.com/images/icon/dbms.png" alt="dbms"> DBMS</a>
            </li>
            <!--
            <li class="nav-item">
                <a class="nav-link" href="/operating-system"><img src="https://images.tpointtech.com/images/icon/os.png" alt="Operating System"> OS</a>
            </li>-->
           <li class="nav-item">
                  <a class="nav-link" href="/aptitude/quantitative"><img src="https://images.tpointtech.com/images/icon/aptitude.png" alt="aptitude"> Aptitude</a>
              </li>
              <li class="nav-item">
                  <a class="nav-link" href="/reasoning"><img src="https://images.tpointtech.com/images/icon/reasoning.png" alt="reasoning"> Reasoning</a>
              </li>
        </ul>
        
        </div>
        
        </div>
        <!-- menu link end-->
    <!-- <div class="borderedelement"></div> -->

    <div class="p-0" style="background-color: var(--sidebar);"> <!-- class="bg-primary p-0" -->
        <div class="container">
            <div class="position-relative p-0">
                <div class="hero-header mb-5" style="background-color: var(--sidebar);"> <!-- class="bg-primary p-0" -->
                    <div class="container my-5">
                        <div class="row g-5 d-flex align-items-center">
                            <div class="col-lg-6 text-center text-lg-start">

                                <p class="subheading">Free Online Tutorials</p>
                                <h1 class="mb-4 animated zoomIn Heading">Welcome to Tpoint Tech </h1>
                                <p class="pb-3 animated zoomIn submain">Get access to 500+ tutorials from top
                                    instructors around the
                                    world in one place.</p>
                                <div id="search-box">
                                    <div class="gcse-search"></div>
                                </div>
                            </div>
                            <div class="col-lg-6 text-center text-lg-start">
                                <div class="img-right d-flex">
                                    <img src="https://images.tpointtech.com/images/small_home.png" style="height: fit-content;" alt="Banner-2">
                                    <img src="https://images.tpointtech.com/images/home-1.png" alt="Banner Main">
                                    <div class="rect small">
                                        <h3><strong>500+</strong><br>TUTORIALS</h3>
                                    </div>
                                </div>

                                <div class="relativesection">
                                    <img src="/static/img/shape4.png" alt="Shape-4">
                                    <img src="/static/img/shape2.png" class="roundanim" alt="Shape-2">
                                    <img src="/static/img/shape3.png" class="roundanim" alt="Shape-3">
                                    <img src="/static/img/shape1.png" class="roundanim" alt="Shape-1">
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <!-- Navbar & Hero End -->
    <!-- Logo slider starts -->

    <div class="container">
        <div class="float--left">
            <h2 class="mb-4 animated zoomIn mediumheading">Tutorials</h2>
            <p class="pb-3 animated zoomIn subhead">Start learning programming language of your choice.</p>
        </div>
    <!-- Vertical section starts -->
    
    

    <section class="course-sections py-5">
        <div class="container">
            <div class="row">
                
                
                    
                        <div class="col-lg-12 section-content mb-5">
                            <!-- Section Heading -->
                            <h3 class="section-heading mb-4 text-center">Python</h3>
                            <!-- Section Categories -->
                            <div class="categories-container d-flex flex-wrap justify-content-center">
                               

                                <div class="courses-grid clients">
                                    
                                    
                                        <a href="python-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/python.png" alt="Python">
                                                              <div class="course-name">Python</div>
                                                          </div></a>
                                                          
                                        <a href="selenium-python">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/selenium-python.png" alt="Selenium Python">
                                                              <div class="course-name">Selenium Python</div>
                                                          </div></a>
                                                          
                                        <a href="django-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/django.png" alt="Django">
                                                              <div class="course-name">Django</div>
                                                          </div></a>
                                                          
                                        <a href="flask-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/flask.png" alt="Flask">
                                                              <div class="course-name">Flask</div>
                                                          </div></a>
                                                          
                                        <a href="numpy-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/numpy.png" alt="NumPy">
                                                              <div class="course-name">NumPy</div>
                                                          </div></a>
                                                          
                                        <a href="python-tkinter">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/tkinter.png" alt="Tkinter">
                                                              <div class="course-name">Tkinter</div>
                                                          </div></a>
                                                          
                                        <a href="pytorch">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/pytorch.png" alt="Pytorch">
                                                              <div class="course-name">Pytorch</div>
                                                          </div></a>
                                                          
                                        <a href="pygame">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/pygame.png" alt="Pygame">
                                                              <div class="course-name">Pygame</div>
                                                          </div></a>
                                                          
                                        <a href="python-scipy">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/scipy.png" alt="Scipy">
                                                              <div class="course-name">Scipy</div>
                                                          </div></a>
                                                          
                                        <a href="python-pandas">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/pandas.png" alt="Pandas">
                                                              <div class="course-name">Pandas</div>
                                                          </div></a>
                                                          
                                        <a href="opencv">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/opencv.png" alt="OpenCV">
                                                              <div class="course-name">OpenCV</div>
                                                          </div></a>
                                                          
                                        <a href="matplotlib">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/matplotlib.png" alt="Matplotlib">
                                                              <div class="course-name">Matplotlib</div>
                                                          </div></a>
                                                          
                                        <a href="python-openpyxl">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/openpyxl.png" alt="Openpyxl">
                                                              <div class="course-name">Openpyxl</div>
                                                          </div></a>
                                                          
                                        <a href="kivy">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/kivy.png" alt="Kivy">
                                                              <div class="course-name">Kivy</div>
                                                          </div></a>
                                                          
                                        <a href="jupyter-notebook">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/jupyter.png" alt="Jupyter">
                                                              <div class="course-name">Jupyter</div>
                                                          </div></a>
                                                          
                                        <a href="python-cgi-programming">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/cgi.png" alt="Python CGI Programming">
                                                              <div class="course-name">Python CGI Programming</div>
                                                          </div></a>
                                                          
                                                      </div>





                            </div>
                        </div>
                    
                        <div class="col-lg-12 section-content mb-5">
                            <!-- Section Heading -->
                            <h3 class="section-heading mb-4 text-center">Java</h3>
                            <!-- Section Categories -->
                            <div class="categories-container d-flex flex-wrap justify-content-center">
                               

                                <div class="courses-grid clients">
                                    
                                    
                                        <a href="java-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/core-java.png" alt="Java">
                                                              <div class="course-name">Java</div>
                                                          </div></a>
                                                          
                                        <a href="servlet-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/servlet.png" alt="Servlet">
                                                              <div class="course-name">Servlet</div>
                                                          </div></a>
                                                          
                                        <a href="jsp-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/jsp.png" alt="JSP">
                                                              <div class="course-name">JSP</div>
                                                          </div></a>
                                                          
                                        <a href="spring-boot-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/spring-boot.png" alt="Spring Boot">
                                                              <div class="course-name">Spring Boot</div>
                                                          </div></a>
                                                          
                                        <a href="spring-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/spring.png" alt="Spring Framework">
                                                              <div class="course-name">Spring Framework</div>
                                                          </div></a>
                                                          
                                        <a href="hibernate-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/hibernate.png" alt="Hibernate">
                                                              <div class="course-name">Hibernate</div>
                                                          </div></a>
                                                          
                                        <a href="java-web-services-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/java-ws.png" alt="Java Web Services">
                                                              <div class="course-name">Java Web Services</div>
                                                          </div></a>
                                                          
                                        <a href="spring-cloud">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/spring-cloud.png" alt="Spring Cloud">
                                                              <div class="course-name">Spring Cloud</div>
                                                          </div></a>
                                                          
                                        <a href="java-swing">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/java-swing.png" alt="Java Swing">
                                                              <div class="course-name">Java Swing</div>
                                                          </div></a>
                                                          
                                        <a href="javafx-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/java-fx.png" alt="JavaFX">
                                                              <div class="course-name">JavaFX</div>
                                                          </div></a>
                                                          
                                        <a href="jsf-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/jsf.png" alt="JSF">
                                                              <div class="course-name">JSF</div>
                                                          </div></a>
                                                          
                                        <a href="jstl">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/jstl.png" alt="JSTL">
                                                              <div class="course-name">JSTL</div>
                                                          </div></a>
                                                          
                                        <a href="java-mail-api-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/java-mail.png" alt="Java Mail">
                                                              <div class="course-name">Java Mail</div>
                                                          </div></a>
                                                          
                                        <a href="java-io">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/java-io.png" alt="Java I/O">
                                                              <div class="course-name">Java I/O</div>
                                                          </div></a>
                                                          
                                        <a href="java-awt">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/java-awt.png" alt="Java AWT">
                                                              <div class="course-name">Java AWT</div>
                                                          </div></a>
                                                          
                                        <a href="java-date">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/java-date.png" alt="Java Date">
                                                              <div class="course-name">Java Date</div>
                                                          </div></a>
                                                          
                                        <a href="java-9-features">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/java-9.png" alt="Java 9">
                                                              <div class="course-name">Java 9</div>
                                                          </div></a>
                                                          
                                        <a href="java-8-features">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/java-8.png" alt="Java 8">
                                                              <div class="course-name">Java 8</div>
                                                          </div></a>
                                                          
                                                      </div>





                            </div>
                        </div>
                    
                        <div class="col-lg-12 section-content mb-5">
                            <!-- Section Heading -->
                            <h3 class="section-heading mb-4 text-center">PHP</h3>
                            <!-- Section Categories -->
                            <div class="categories-container d-flex flex-wrap justify-content-center">
                               

                                <div class="courses-grid clients">
                                    
                                    
                                        <a href="php-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/logo/php-logo.png" alt="PHP">
                                                              <div class="course-name">PHP</div>
                                                          </div></a>
                                                          
                                        <a href="framework7-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/framework7/images/framework7-home.jpg" alt="Framework7">
                                                              <div class="course-name">Framework7</div>
                                                          </div></a>
                                                          
                                        <a href="laravel">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/laravel/images/laravel-home.png" alt="Laravel">
                                                              <div class="course-name">Laravel</div>
                                                          </div></a>
                                                          
                                        <a href="wordpress-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/wordpress/images/wordpress.png" alt="WordPress">
                                                              <div class="course-name">WordPress</div>
                                                          </div></a>
                                                          
                                        <a href="codeigniter-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/codeigniter/images/codeigniter-home.png" alt="CodeIgniter">
                                                              <div class="course-name">CodeIgniter</div>
                                                          </div></a>
                                                          
                                        <a href="magento-2">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/magento2/images/magento-home.png" alt="Magento 2">
                                                              <div class="course-name">Magento 2</div>
                                                          </div></a>
                                                          
                                        <a href="joomla">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/joomla/images/joomla-home.png" alt="Joomla">
                                                              <div class="course-name">Joomla</div>
                                                          </div></a>
                                                          
                                        <a href="phalcon-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/phalcon/images/phalcon-home.jpg" alt="Phalcon">
                                                              <div class="course-name">Phalcon</div>
                                                          </div></a>
                                                          
                                        <a href="yii-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/yii/images/yii-home.png" alt="YII">
                                                              <div class="course-name">YII</div>
                                                          </div></a>
                                                          
                                                      </div>





                            </div>
                        </div>
                    
                        <div class="col-lg-12 section-content mb-5">
                            <!-- Section Heading -->
                            <h3 class="section-heading mb-4 text-center">Software Testing</h3>
                            <!-- Section Categories -->
                            <div class="categories-container d-flex flex-wrap justify-content-center">
                               

                                <div class="courses-grid clients">
                                    
                                    
                                        <a href="software-testing-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/software-testing.png" alt="Software Testing">
                                                              <div class="course-name">Software Testing</div>
                                                          </div></a>
                                                          
                                        <a href="agile">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/agile.png" alt="Agile">
                                                              <div class="course-name">Agile</div>
                                                          </div></a>
                                                          
                                        <a href="jira-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/jira.png" alt="JIRA">
                                                              <div class="course-name">JIRA</div>
                                                          </div></a>
                                                          
                                        <a href="bugzilla">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/bugzilla.png" alt="Bugzilla">
                                                              <div class="course-name">Bugzilla</div>
                                                          </div></a>
                                                          
                                        <a href="etl-testing">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/etl.png" alt="ETL">
                                                              <div class="course-name">ETL</div>
                                                          </div></a>
                                                          
                                        <a href="jmeter-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/jmeter.png" alt="JMeter">
                                                              <div class="course-name">JMeter</div>
                                                          </div></a>
                                                          
                                        <a href="quality-assurance">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/quality-assurance.png" alt="QA">
                                                              <div class="course-name">QA</div>
                                                          </div></a>
                                                          
                                        <a href="testng-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/testng.png" alt="TestNG">
                                                              <div class="course-name">TestNG</div>
                                                          </div></a>
                                                          
                                        <a href="automation-anywhere">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/automation-anywhere.png" alt="Automation Anywhere">
                                                              <div class="course-name">Automation Anywhere</div>
                                                          </div></a>
                                                          
                                        <a href="uipath">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/uipath.png" alt="UiPath">
                                                              <div class="course-name">UiPath</div>
                                                          </div></a>
                                                          
                                        <a href="selenium-python">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/selenium-python.png" alt="Selenium Python">
                                                              <div class="course-name">Selenium Python</div>
                                                          </div></a>
                                                          
                                        <a href="postman">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/postman.png" alt="Postman">
                                                              <div class="course-name">Postman</div>
                                                          </div></a>
                                                          
                                        <a href="junit-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/junit.png" alt="Junit">
                                                              <div class="course-name">Junit</div>
                                                          </div></a>
                                                          
                                        <a href="soapui">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/soapui.png" alt="SoapUI">
                                                              <div class="course-name">SoapUI</div>
                                                          </div></a>
                                                          
                                        <a href="rpa">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/rpa.png" alt="RPA">
                                                              <div class="course-name">RPA</div>
                                                          </div></a>
                                                          
                                        <a href="manual-testing">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/manual-testing.png" alt="Manual Testing">
                                                              <div class="course-name">Manual Testing</div>
                                                          </div></a>
                                                          
                                        <a href="cucumber-testing">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/cucumber.png" alt="Cucumber">
                                                              <div class="course-name">Cucumber</div>
                                                          </div></a>
                                                          
                                        <a href="appium">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/appium.png" alt="Appium">
                                                              <div class="course-name">Appium</div>
                                                          </div></a>
                                                          
                                        <a href="mobile-application-testing">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/mobile-testing.png" alt="Mobile Testing">
                                                              <div class="course-name">Mobile Testing</div>
                                                          </div></a>
                                                          
                                                      </div>





                            </div>
                        </div>
                    
                        <div class="col-lg-12 section-content mb-5">
                            <!-- Section Heading -->
                            <h3 class="section-heading mb-4 text-center">.NET Framework</h3>
                            <!-- Section Categories -->
                            <div class="categories-container d-flex flex-wrap justify-content-center">
                               

                                <div class="courses-grid clients">
                                    
                                    
                                        <a href="net-framework">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/dot-net.png" alt=".Net">
                                                              <div class="course-name">.Net</div>
                                                          </div></a>
                                                          
                                        <a href="c-sharp-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/csharp/images/c-sharp-home.png" alt="C#">
                                                              <div class="course-name">C#</div>
                                                          </div></a>
                                                          
                                        <a href="asp-net-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/asp/images/asp-net-home.png" alt="ASP.NET">
                                                              <div class="course-name">ASP.NET</div>
                                                          </div></a>
                                                          
                                        <a href="ado-net-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/ado/images/ado-net-home.jpg" alt="ADO.NET">
                                                              <div class="course-name">ADO.NET</div>
                                                          </div></a>
                                                          
                                        <a href="wpf">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/wpf/images/wpf-home.png" alt="WPF">
                                                              <div class="course-name">WPF</div>
                                                          </div></a>
                                                          
                                        <a href="ssrs">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/ssrs/images/ssrs-home.png" alt="SSRS">
                                                              <div class="course-name">SSRS</div>
                                                          </div></a>
                                                          
                                        <a href="ssis">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/ssis/images/ssis-home.png" alt="SSIS">
                                                              <div class="course-name">SSIS</div>
                                                          </div></a>
                                                          
                                        <a href="web-api">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/webapi/images/web-api-home.png" alt="Web API">
                                                              <div class="course-name">Web API</div>
                                                          </div></a>
                                                          
                                        <a href="linq">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/linq/images/linq-home.png" alt="LINQ">
                                                              <div class="course-name">LINQ</div>
                                                          </div></a>
                                                          
                                        <a href="sharepoint">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/sharepoint/images/sharepoint-home.png" alt="SharePoint">
                                                              <div class="course-name">SharePoint</div>
                                                          </div></a>
                                                          
                                        <a href="f-sharp-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/fsharp/images/fsharp-home.png" alt="F#">
                                                              <div class="course-name">F#</div>
                                                          </div></a>
                                                          
                                        <a href="vb-net">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/vb-net/images/vb-net-home.png" alt="VB.NET">
                                                              <div class="course-name">VB.NET</div>
                                                          </div></a>
                                                          
                                                      </div>





                            </div>
                        </div>
                    
                        <div class="col-lg-12 section-content mb-5">
                            <!-- Section Heading -->
                            <h3 class="section-heading mb-4 text-center">B.Tech/MCA</h3>
                            <!-- Section Categories -->
                            <div class="categories-container d-flex flex-wrap justify-content-center">
                               

                                <div class="courses-grid clients">
                                    
                                    
                                        <a href="dbms-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/dbms.png" alt="DBMS">
                                                              <div class="course-name">DBMS</div>
                                                          </div></a>
                                                          
                                        <a href="data-structure-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/data-structures.png" alt="Data Structures">
                                                              <div class="course-name">Data Structures</div>
                                                          </div></a>
                                                          
                                        <a href="daa-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/daa.png" alt="DAA">
                                                              <div class="course-name">DAA</div>
                                                          </div></a>
                                                          
                                        <a href="operating-system">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/operating-system.png" alt="Operating System">
                                                              <div class="course-name">Operating System</div>
                                                          </div></a>
                                                          
                                        <a href="computer-network-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/computer-network.png" alt="Computer Network">
                                                              <div class="course-name">Computer Network</div>
                                                          </div></a>
                                                          
                                        <a href="compiler-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/compiler-design.png" alt="Compiler Design">
                                                              <div class="course-name">Compiler Design</div>
                                                          </div></a>
                                                          
                                        <a href="computer-organization-and-architecture-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/computer-organization.png" alt="Computer Organization">
                                                              <div class="course-name">Computer Organization</div>
                                                          </div></a>
                                                          
                                        <a href="discrete-mathematics-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/discrete-mathematics.png" alt="Discrete Mathematics">
                                                              <div class="course-name">Discrete Mathematics</div>
                                                          </div></a>
                                                          
                                        <a href="ethical-hacking">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/ethical-hacking.png" alt="Ethical Hacking">
                                                              <div class="course-name">Ethical Hacking</div>
                                                          </div></a>
                                                          
                                        <a href="computer-graphics-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/computer-graphics.png" alt="Computer Graphics">
                                                              <div class="course-name">Computer Graphics</div>
                                                          </div></a>
                                                          
                                        <a href="software-engineering">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/software-engineering.png" alt="Software Engineering">
                                                              <div class="course-name">Software Engineering</div>
                                                          </div></a>
                                                          
                                        <a href="c-programming-language-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/c-programming.png" alt="C Programming">
                                                              <div class="course-name">C Programming</div>
                                                          </div></a>
                                                          
                                        <a href="cpp-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/cpp.png" alt="C++">
                                                              <div class="course-name">C++</div>
                                                          </div></a>
                                                          
                                        <a href="java-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/new/core-java.png" alt="Java">
                                                              <div class="course-name">Java</div>
                                                          </div></a>
                                                          
                                        <a href="net-framework">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/dot-net.png" alt=".Net">
                                                              <div class="course-name">.Net</div>
                                                          </div></a>
                                                          
                                        <a href="python-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/python.png" alt="Python">
                                                              <div class="course-name">Python</div>
                                                          </div></a>
                                                          
                                        <a href="programs-list">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/programs.png" alt="Programs">
                                                              <div class="course-name">Programs</div>
                                                          </div></a>
                                                          
                                        <a href="control-system-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/control-system.png" alt="Control System">
                                                              <div class="course-name">Control System</div>
                                                          </div></a>
                                                          
                                        <a href="data-mining">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/data-mining.png" alt="Data Mining">
                                                              <div class="course-name">Data Mining</div>
                                                          </div></a>
                                                          
                                        <a href="data-warehouse">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/data-warehouse.png" alt="Data Warehouse">
                                                              <div class="course-name">Data Warehouse</div>
                                                          </div></a>
                                                          
                                                      </div>





                            </div>
                        </div>
                    
                        <div class="col-lg-12 section-content mb-5">
                            <!-- Section Heading -->
                            <h3 class="section-heading mb-4 text-center">Trending Technology</h3>
                            <!-- Section Categories -->
                            <div class="categories-container d-flex flex-wrap justify-content-center">
                               

                                <div class="courses-grid clients">
                                    
                                    
                                        <a href="angular-8">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/angular-8.png" alt="Angular 8">
                                                              <div class="course-name">Angular 8</div>
                                                          </div></a>
                                                          
                                        <a href="reactjs-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/react.png" alt="ReactJS">
                                                              <div class="course-name">ReactJS</div>
                                                          </div></a>
                                                          
                                        <a href="react-native-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/react-native.png" alt="React Native">
                                                              <div class="course-name">React Native</div>
                                                          </div></a>
                                                          
                                        <a href="artificial-intelligence-ai">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/artificial-intelligence.png" alt="Artificial Intelligence">
                                                              <div class="course-name">Artificial Intelligence</div>
                                                          </div></a>
                                                          
                                        <a href="aws-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/amazon-web-services.png" alt="AWS">
                                                              <div class="course-name">AWS</div>
                                                          </div></a>
                                                          
                                        <a href="selenium-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/selenium.png" alt="Selenium">
                                                              <div class="course-name">Selenium</div>
                                                          </div></a>
                                                          
                                        <a href="cloud-computing">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/cloud-computing.png" alt="Cloud Computing">
                                                              <div class="course-name">Cloud Computing</div>
                                                          </div></a>
                                                          
                                        <a href="hadoop-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/hadoop.png" alt="Hadoop">
                                                              <div class="course-name">Hadoop</div>
                                                          </div></a>
                                                          
                                        <a href="data-science">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/data-science.png" alt="Data Science">
                                                              <div class="course-name">Data Science</div>
                                                          </div></a>
                                                          
                                        <a href="angular-7-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/angular7.png" alt="Angular 7">
                                                              <div class="course-name">Angular 7</div>
                                                          </div></a>
                                                          
                                        <a href="git">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/git.png" alt="Git">
                                                              <div class="course-name">Git</div>
                                                          </div></a>
                                                          
                                        <a href="machine-learning">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/machine-learning.png" alt="Machine Learning">
                                                              <div class="course-name">Machine Learning</div>
                                                          </div></a>
                                                          
                                        <a href="microsoft-azure">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/azure.png" alt="Azure">
                                                              <div class="course-name">Azure</div>
                                                          </div></a>
                                                          
                                        <a href="google-cloud-platform">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/google-cloud-platform.png" alt="Google Cloud">
                                                              <div class="course-name">Google Cloud</div>
                                                          </div></a>
                                                          
                                        <a href="angularjs-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/js/angularjs/images/angularjs-logo.png" alt="AngularJS">
                                                              <div class="course-name">AngularJS</div>
                                                          </div></a>
                                                          
                                        <a href="github">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/github/images/github-home.png" alt="GitHub">
                                                              <div class="course-name">GitHub</div>
                                                          </div></a>
                                                          
                                                      </div>





                            </div>
                        </div>
                    
                        <div class="col-lg-12 section-content mb-5">
                            <!-- Section Heading -->
                            <h3 class="section-heading mb-4 text-center">Web Technology</h3>
                            <!-- Section Categories -->
                            <div class="categories-container d-flex flex-wrap justify-content-center">
                               

                                <div class="courses-grid clients">
                                    
                                    
                                        <a href="html-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/logo/html-tutorial.png" alt="HTML">
                                                              <div class="course-name">HTML</div>
                                                          </div></a>
                                                          
                                        <a href="css-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/logo/css3.jpg" alt="CSS">
                                                              <div class="course-name">CSS</div>
                                                          </div></a>
                                                          
                                        <a href="javascript-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/logo/javascripthome.png" alt="JavaScript">
                                                              <div class="course-name">JavaScript</div>
                                                          </div></a>
                                                          
                                        <a href="jquery-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/logo/jquery.png" alt="jQuery">
                                                              <div class="course-name">jQuery</div>
                                                          </div></a>
                                                          
                                        <a href="jquery-ui-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/logo/jquery-ui.jpg" alt="jQuery UI">
                                                              <div class="course-name">jQuery UI</div>
                                                          </div></a>
                                                          
                                        <a href="xml-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/logo/xml-home.png" alt="XML">
                                                              <div class="course-name">XML</div>
                                                          </div></a>
                                                          
                                        <a href="json-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/logo/json.png" alt="JSON">
                                                              <div class="course-name">JSON</div>
                                                          </div></a>
                                                          
                                        <a href="bootstrap-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/bootstrappages/images/bootstrap-logo.jpg" alt="Bootstrap">
                                                              <div class="course-name">Bootstrap</div>
                                                          </div></a>
                                                          
                                        <a href="angularjs-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/js/angularjs/images/angularjs-logo.png" alt="AngularJS">
                                                              <div class="course-name">AngularJS</div>
                                                          </div></a>
                                                          
                                        <a href="nodejs-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/js/nodejs/images/nodejs-logo.png" alt="Node.js">
                                                              <div class="course-name">Node.js</div>
                                                          </div></a>
                                                          
                                        <a href="expressjs-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/js/nodejs/express/images/expressjs-logo.png" alt="Express.js">
                                                              <div class="course-name">Express.js</div>
                                                          </div></a>
                                                          
                                        <a href="backbonejs-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/backbonejs/images/backbonejs-logo.png" alt="Backbone">
                                                              <div class="course-name">Backbone</div>
                                                          </div></a>
                                                          
                                        <a href="sass-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/sass/images/sass.png" alt="Sass">
                                                              <div class="course-name">Sass</div>
                                                          </div></a>
                                                          
                                        <a href="less-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/less/images/less-logo.png" alt="Less">
                                                              <div class="course-name">Less</div>
                                                          </div></a>
                                                          
                                        <a href="xslt-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/xslt/images/xslt-home.png" alt="XSLT">
                                                              <div class="course-name">XSLT</div>
                                                          </div></a>
                                                          
                                        <a href="xpath-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/xpath/images/xpath-home.jpg" alt="XPath">
                                                              <div class="course-name">XPath</div>
                                                          </div></a>
                                                          
                                        <a href="xquery-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/xquery/images/xquery-home.png" alt="XQuery">
                                                              <div class="course-name">XQuery</div>
                                                          </div></a>
                                                          
                                        <a href="xhtml-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/xhtml/images/xhtml-home.jpg" alt="XHTML">
                                                              <div class="course-name">XHTML</div>
                                                          </div></a>
                                                          
                                        <a href="pure-css-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/purecss/images/pure-css-home.png" alt="Pure.CSS">
                                                              <div class="course-name">Pure.CSS</div>
                                                          </div></a>
                                                          
                                        <a href="materialize-css-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/materializecss/images/materialize-home.png" alt="Materialize">
                                                              <div class="course-name">Materialize</div>
                                                          </div></a>
                                                          
                                        <a href="http-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/http/images/http-home.png" alt="HTTP">
                                                              <div class="course-name">HTTP</div>
                                                          </div></a>
                                                          
                                        <a href="dhtml">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/dhtml/images/dhtml-home.png" alt="DHTML">
                                                              <div class="course-name">DHTML</div>
                                                          </div></a>
                                                          
                                                      </div>





                            </div>
                        </div>
                    
                        <div class="col-lg-12 section-content mb-5">
                            <!-- Section Heading -->
                            <h3 class="section-heading mb-4 text-center">Database</h3>
                            <!-- Section Categories -->
                            <div class="categories-container d-flex flex-wrap justify-content-center">
                               

                                <div class="courses-grid clients">
                                    
                                    
                                        <a href="sql-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/sql.png" alt="SQL">
                                                              <div class="course-name">SQL</div>
                                                          </div></a>
                                                          
                                        <a href="pl-sql-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/pl-sql.png" alt="PL/SQL">
                                                              <div class="course-name">PL/SQL</div>
                                                          </div></a>
                                                          
                                        <a href="mysql-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/mysql.png" alt="MySQL">
                                                              <div class="course-name">MySQL</div>
                                                          </div></a>
                                                          
                                        <a href="mongodb-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/mongodb.png" alt="MongoDB">
                                                              <div class="course-name">MongoDB</div>
                                                          </div></a>
                                                          
                                        <a href="postgresql-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/postgresql.png" alt="PostgreSQL">
                                                              <div class="course-name">PostgreSQL</div>
                                                          </div></a>
                                                          
                                        <a href="sql-server-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/sql-server.png" alt="SQL Server">
                                                              <div class="course-name">SQL Server</div>
                                                          </div></a>
                                                          
                                        <a href="oracle-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/oracle.png" alt="Oracle">
                                                              <div class="course-name">Oracle</div>
                                                          </div></a>
                                                          
                                        <a href="cassandra-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/cassandra.png" alt="Cassandra">
                                                              <div class="course-name">Cassandra</div>
                                                          </div></a>
                                                          
                                        <a href="sqlite-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/sqlite.png" alt="SQLite">
                                                              <div class="course-name">SQLite</div>
                                                          </div></a>
                                                          
                                        <a href="neo4j-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/neo4j.png" alt="Neo4j">
                                                              <div class="course-name">Neo4j</div>
                                                          </div></a>
                                                          
                                        <a href="couchdb-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/couchdb.png" alt="CouchDB">
                                                              <div class="course-name">CouchDB</div>
                                                          </div></a>
                                                          
                                        <a href="mariadb-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/mariadb.png" alt="MariaDB">
                                                              <div class="course-name">MariaDB</div>
                                                          </div></a>
                                                          
                                        <a href="db2-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/db2.png" alt="DB2">
                                                              <div class="course-name">DB2</div>
                                                          </div></a>
                                                          
                                        <a href="pouchdb-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/pouchdb.png" alt="PouchDB">
                                                              <div class="course-name">PouchDB</div>
                                                          </div></a>
                                                          
                                        <a href="redis-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/redis.png" alt="Redis">
                                                              <div class="course-name">Redis</div>
                                                          </div></a>
                                                          
                                                      </div>





                            </div>
                        </div>
                    
                        <div class="col-lg-12 section-content mb-5">
                            <!-- Section Heading -->
                            <h3 class="section-heading mb-4 text-center">Cloud Computing</h3>
                            <!-- Section Categories -->
                            <div class="categories-container d-flex flex-wrap justify-content-center">
                               

                                <div class="courses-grid clients">
                                    
                                    
                                        <a href="aws-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/amazon-web-services.png" alt="AWS">
                                                              <div class="course-name">AWS</div>
                                                          </div></a>
                                                          
                                        <a href="cloud-computing">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/cloud-computing.png" alt="Cloud Computing">
                                                              <div class="course-name">Cloud Computing</div>
                                                          </div></a>
                                                          
                                        <a href="microsoft-azure">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/azure.png" alt="Azure">
                                                              <div class="course-name">Azure</div>
                                                          </div></a>
                                                          
                                        <a href="salesforce">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/salesforce.png" alt="Salesforce">
                                                              <div class="course-name">Salesforce</div>
                                                          </div></a>
                                                          
                                        <a href="google-cloud-platform">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/google-cloud-platform.png" alt="Google Cloud">
                                                              <div class="course-name">Google Cloud</div>
                                                          </div></a>
                                                          
                                                      </div>





                            </div>
                        </div>
                    
                        <div class="col-lg-12 section-content mb-5">
                            <!-- Section Heading -->
                            <h3 class="section-heading mb-4 text-center">Big Data Technologies</h3>
                            <!-- Section Categories -->
                            <div class="categories-container d-flex flex-wrap justify-content-center">
                               

                                <div class="courses-grid clients">
                                    
                                    
                                        <a href="splunk">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/splunk.png" alt="Splunk">
                                                              <div class="course-name">Splunk</div>
                                                          </div></a>
                                                          
                                        <a href="hadoop-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/hadoop.png" alt="Hadoop">
                                                              <div class="course-name">Hadoop</div>
                                                          </div></a>
                                                          
                                        <a href="data-mining">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/data-mining.png" alt="Data Mining">
                                                              <div class="course-name">Data Mining</div>
                                                          </div></a>
                                                          
                                        <a href="mongodb-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/mongodb.png" alt="MongoDB">
                                                              <div class="course-name">MongoDB</div>
                                                          </div></a>
                                                          
                                        <a href="cassandra-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/cassandra.png" alt="Cassandra">
                                                              <div class="course-name">Cassandra</div>
                                                          </div></a>
                                                          
                                        <a href="apache-spark-tutorial">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/spark/images/apache-spark-home.png" alt="Spark">
                                                              <div class="course-name">Spark</div>
                                                          </div></a>
                                                          
                                        <a href="hive">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/hadooppages/images/hive-home.png" alt="Hive">
                                                              <div class="course-name">Hive</div>
                                                          </div></a>
                                                          
                                        <a href="tableau">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/tableau/images/tableau-home.png" alt="Tableau">
                                                              <div class="course-name">Tableau</div>
                                                          </div></a>
                                                          
                                        <a href="tensorflow">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/tensorflow/images/tensorflow-home.png" alt="Tensorflow">
                                                              <div class="course-name">Tensorflow</div>
                                                          </div></a>
                                                          
                                        <a href="apache-kafka">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/kafka/images/kafka-home.png" alt="Kafka">
                                                              <div class="course-name">Kafka</div>
                                                          </div></a>
                                                          
                                        <a href="kubernetes">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/tutorial/kubernetes/images/kubernetes-home.png" alt="Kubernetes">
                                                              <div class="course-name">Kubernetes</div>
                                                          </div></a>
                                                          
                                        <a href="elasticsearch">
                                            <div class="item">
                                                <span class="arrow-position"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1.3rem" width="1.3rem" xmlns="http://www.w3.org/2000/svg"><path d="M295.6 163.7c-5.1 5-5.1 13.3-.1 18.4l60.8 60.9H124.9c-7.1 0-12.9 5.8-12.9 13s5.8 13 12.9 13h231.3l-60.8 60.9c-5 5.1-4.9 13.3.1 18.4 5.1 5 13.2 5 18.3-.1l82.4-83c1.1-1.2 2-2.5 2.7-4.1.7-1.6 1-3.3 1-5 0-3.4-1.3-6.6-3.7-9.1l-82.4-83c-4.9-5.2-13.1-5.3-18.2-.3z"></path></svg></span>
                                                              <img src="https://images.tpointtech.com/images/homeicon/elasticsearch.png" alt="Elasticsearch">
                                                              <div class="course-name">Elasticsearch</div>
                                                          </div></a>
                                                          
                                                      </div>





                            </div>
                        </div>
                    
                
            </div>
        </div>
    </section>
<!-- Vertical section endss -->
    
    
    

    </div>



    <!-- About Start -->

    <div class="container-xxl py-5">
        <div class="aboutus themecolor">
            <div class="container px-lg-5">
                <div class="row g-5">
                    <div class="col-lg-6 d-flex">
                        <div class="rounds"><img src="/static/img/Ellipse 1.png" alt="Ellipse-1">
                            <img src="/static/img/Ellipse 2.png" alt="Ellipse-2">
                        </div>
                        <img class="img-fluid wow zoomIn" data-wow-delay="0.5s" src="/static/img/aboutjp.png"
                            alt="About Jp">
                        <div class="rect">
                            <img src="/static/img/followers.png" alt="Followers">
                            <h3><strong>100K+</strong><br>SUBSCRIBERS</h3>
                        </div>
                    </div>
                    <div class="col-lg-6 d-flex flex-column" data-wow-delay="0.1s">
                        <div class="section-title position-relative">
                            <p class="subheading">Youtube Channel</p>
                            <h2 class="mt-2 mediumheading">Explore Latest Tutorials by
                                Subscribing to Our YouTube Channel</h2>
                        </div>

                        <div class="d-flex align-items-center mt-4">
                            <a class="btn btn-primary rounded-pill px-4 me-3 btntheme" target="_blank" href="https://www.youtube.com/channel/UCUnYvQVCrJoFWZhKK3O2xLg"><i
                                    class="fa fa-long-arrow-right" aria-hidden="true"></i>
                                Join Now</a>
                        </div>
                    </div>

                </div>
            </div>
        </div>
    </div>
    <!-- About End -->
    

 <!-- suscribe Start -->
 
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>

    <script>
        $(document).ready(function () {
            $("#subscribeBtn").click(function () {
                var email = $("#email").val().trim();
                
                if (email === "") {
                    $("#message").html("<span style='color: red;'>Please enter your email.</span>");
                    return;
                }
    
                $.ajax({
                    url: "/subscribe", // Your Express.js API endpoint
                    type: "POST",
                    contentType: "application/json",
                    data: JSON.stringify({ email: email }),
                    beforeSend: function() {
                        $("#subscribeBtn").prop("disabled", true).html("Subscribing...");
                    },
                    success: function (response) {
                        $("#message").html("<span style='color: green;'>Subscription successful! Please check your email.</span>");
                        $("#email").val("");
                    },
                    error: function (xhr) {
                        var errorMessage = xhr.responseJSON ? xhr.responseJSON.error : "Subscription failed.";
                        $("#message").html("<span style='color: red;'>" + errorMessage + "</span>");
                    },
                    complete: function() {
                        $("#subscribeBtn").prop("disabled", false).html('Subscribe <i class="fa fa-paper-plane text-primary fs-4"></i>');
                    }
                });
            });
        });
    </script>

 <!-- <div class="container-xxl" style="position: relative;">
    <div class="aboutus themecolor subscribe">
    <div class="container px-lg-5 text-center py-5">
        <h2 class="mb-4 animated zoomIn mediumheading">Subscribe Our Newsletter </h2>
        <p class="pb-3 animated zoomIn submain text-center">Get the latest updates or newsletter right at your inbox.</p>
        <div class="position-relative w-100 mt-3">
            <input class="form-control border-0 rounded-pill w-100 ps-4 pe-5" type="text" placeholder="Your Email" style="height: 48px;">
            <button type="button" class="btn shadow-none position-absolute top-0 end-0 mt-1 me-2">Subscribe <i class="fa fa-paper-plane text-primary fs-4"></i></button>
        </div> 
        <p id="message" class="mt-3"></p>  
    </div>
    </div>
    </div> -->
<!-- subscribe End -->

        <!-- Footer Start -->
        <div class="container-fluid footer mt-5 pt-5 wow fadeIn" data-wow-delay="0.1s">
            <div class="container py-5">
                <div class="row">
                    <div class="col-md-6 col-lg-5" id="tpointtech-images">
                        <img src="https://tpointtech-images.s3.eu-north-1.amazonaws.com/static/images/logo.png" alt="Logo">
                        <p>We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks</p>
                       
                        <h5 class="mb-4">Contact info</h5>
                        <p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z"/></svg>G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India</p>
                        <p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.7c20.7 17 50.4 17 71.1 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.5-93.7 31.5-132 0L48 212.2zM0 128C0 92.7 28.7 64 64 64H448c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64v128z"/></svg><a href="/cdn-cgi/l/email-protection#3a52487a4e4a5553544e4e5f595214595557"><span class="__cf_email__" data-cfemail="3d554f7d494d5254534949585e55135e5250">[email&#160;protected]</span></a></p>
                        <p><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="1.8em" width="1.8em" xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M0 0h24v24H0V0z"></path><path d="M16.49 3c-2.21 0-4.21.9-5.66 2.34l1.06 1.06a6.47 6.47 0 0 1 9.18 0l1.06-1.06A7.932 7.932 0 0 0 16.49 3z"></path><path d="M20.03 7.46a5.022 5.022 0 0 0-7.08 0l1.06 1.06c.63-.63 1.51-1.03 2.47-1.03s1.84.39 2.47 1.03l1.08-1.06zM15.08 9.59 16.49 11l1.41-1.41c-.36-.37-.86-.59-1.41-.59s-1.05.22-1.41.59z"></path><path d="m15.63 14.4-2.52 2.5c-2.5-1.43-4.57-3.5-6-6l2.5-2.52c.23-.24.33-.57.27-.9L9.13 3.8c-.09-.46-.5-.8-.98-.8H4c-.56 0-1.03.47-1 1.03.17 2.89 1.05 5.6 2.43 7.97 1.58 2.73 3.85 4.99 6.57 6.57 2.37 1.37 5.08 2.26 7.97 2.43.56.03 1.03-.44 1.03-1v-4.15c0-.48-.34-.89-.8-.98l-3.67-.73a.985.985 0 0 0-.9.26z"></path></svg><a href="tel:+919599086977">+91-9599086977</a></p>
                        <h5 class="mb-4">Follow us</h5>

                        <div class="d-flex">
                            <a class="btn btn-outline-light btn-social" target="_blank" href="https://www.facebook.com/tpointtech"><img src="static/img/facebook.png" alt="Facebok"></a>
                            <a class="btn btn-outline-light btn-social" target="_blank" href="https://x.com/tpointtech"><img src="https://tpointtech-images.s3.eu-north-1.amazonaws.com/static/images/x.png" alt="X" width="24"></a>
                            <a class="btn btn-outline-light btn-social" target="_blank" href="https://www.linkedin.com/company/tpointtech/"><img src="https://tpointtech-images.s3.eu-north-1.amazonaws.com/static/images/linkedin.png" alt="linkedin" width="24"></a>
                            <a class="btn btn-outline-light btn-social" target="_blank" href="https://t.me/tpointtech"><img src="https://tpointtech-images.s3.amazonaws.com/static/images/telegram.png" alt="Telegram" width="24"></a>
                            <a class="btn btn-outline-light btn-social" target="_blank" href="https://www.youtube.com/@tpointtechofficial"><img src="static/img/youtube.png" alt="Youtube"></a>
                            <a class="btn btn-outline-light btn-social" target="_blank" href="https://www.instagram.com/tpointtech"><img src="https://tpointtech-images.s3.eu-north-1.amazonaws.com/static/images/insta.png" alt="insta"></a>
                        </div>
                        <br>
                        <p class="latest-post">
                            <a href="/latest-post">Latest Post</a>
                          </p>
                          <p class="latest-post">
                            <a href="/tutorials-list">Tutorials List</a>
                          </p>
                        <p class="privacy-policy">
                          <a href="/privacy-policy">PRIVACY POLICY</a>
                        </p>
                    </div>
                    <div class="col-md-6 col-lg-2">
                        <h5 class="mb-4">Tutorials</h5>
                        <a class="btn btn-link" href="/java-tutorial">Java</a>
                        <a class="btn btn-link" href="/data-structure-tutorial">Data Structures</a>
                        <a class="btn btn-link" href="/c-programming-language-tutorial">C Programming</a>
                        <a class="btn btn-link" href="/cpp-tutorial">C++ Tutorial</a>
                        <a class="btn btn-link" href="/c-sharp-tutorial">C# Tutorial</a>
                        <a class="btn btn-link" href="/php-tutorial">PHP Tutorial </a>
                        <a class="btn btn-link" href="/html-tutorial">HTML Tutorial</a>
                        <a class="btn btn-link" href="/javascript-tutorial">JavaScript Tutorial </a>
                        <a class="btn btn-link" href="/jquery-tutorial">jQuery Tutorial </a>
                        <a class="btn btn-link" href="/spring-tutorial">Spring Tutorial</a>
                    </div>
                     <div class="col-md-6 col-lg-3">
                        <h5 class="mb-4">Interview Questions</h5>
                        <a class="btn btn-link" href="/microsoft-interview-questions">Microsoft </a>
                        <a class="btn btn-link" href="/amazon-interview-questions">Amazon </a>
                        <a class="btn btn-link" href="/adobe-interview-questions">Adobe </a>
                        <a class="btn btn-link" href="/intuit-interview-questions">Intuit </a>
                        <a class="btn btn-link" href="/accenture-interview-questions">Accenture</a>
                        <a class="btn btn-link" href="/cognizant-interview-questions">Cognizant </a>
                        <a class="btn btn-link" href="/capgemini-interview-questions">Capgemini </a>
                        <a class="btn btn-link" href="/wipro-interview-questions">Wipro </a>
                        <a class="btn btn-link" href="/tcs-interview-questions">Tcs </a>
                        <a class="btn btn-link" href="/infosys-interview-questions">Infosys </a>
                    </div>
                    <div class="col-md-6 col-lg-2">
                        <h5 class="mb-4">Online Compiler</h5>
                        <a class="btn btn-link" href="/compiler/c"> C </a> 
                        <a class="btn btn-link" href="/compiler/r"> R </a> 
                        <a class="btn btn-link" href="/compiler/cpp"> C++ </a>
                        <a class="btn btn-link" href="/compiler/php"> Php </a>
                        <a class="btn btn-link" href="/compiler/java"> Java  </a>
                        <a class="btn btn-link" href="/compiler/html"> Html </a>
                        <a class="btn btn-link" href="/compiler/swift"> Swift </a> 
                        <a class="btn btn-link" href="/compiler/python"> Python </a>
                        <a class="btn btn-link" href="/compiler/javascript"> JavaScript </a>
                        <a class="btn btn-link" href="/compiler/typescript"> TypeScript </a> 

                    </div>
                </div>
            </div>
            <div class="container px-lg-5">
                <div class="copyright">
                    <div class="row">
                        <div class="col-md-12 text-center  mb-3 mb-md-0" >
                            &copy; Copyright 2025 TpointTech.com. All Rights Reserved.
                        </div>
                       
                    </div>
                </div>
            </div>
        </div>
        <!-- Footer End -->


        <!-- Back to Top -->
        <a href="#" id="scrollButton" class="btn btn-info btn-floating btn-lg" style="position: fixed; bottom: 20px; right: 20px; border-radius: 50%;"><i class="fas fa-arrow-up"></i></a>

    <!-- JavaScript Libraries -->
    <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"></script>
    <script src="/static/lib/wow/wow.min.js"></script>
    <script src="/static/lib/easing/easing.min.js"></script>
    <script src="/static/lib/waypoints/waypoints.min.js"></script>
    <script src="/static/lib/owlcarousel/owl.carousel.min.js"></script>
    <script src="/static/lib/isotope/isotope.pkgd.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/twbs-pagination/1.4.2/jquery.twbsPagination.min.js"></script>
    <!-- Template Javascript -->
    <script src="/static/js/main.js"></script>


</html>

<script>
    // Function to toggle the visibility of the scroll button
    function toggleScrollButton() {
      var scrollButton = document.getElementById("scrollButton");
      if (window.scrollY > window.innerHeight / 2) {
        scrollButton.style.display = "block";
      } else {
        scrollButton.style.display = "none";
      }
    }
  
    //scroll event listener to the window
    window.addEventListener("scroll", toggleScrollButton);
  </script>



<script async>
    const themeToggleBtn = document.getElementById('theme-toggle');
    const themeIcon = document.getElementById('theme-icon');
    const iframe = document.getElementById('my-iframe'); // Assuming your iframe has an ID
  
    // Base URL for the iframe
    const baseIframeSrc = "https://onecompiler.com/embed/java?hideTitle=true&hideNew=true&hideNewFileOption=true";
  
    // Check if night mode is already enabled
    if (localStorage.getItem('theme') === 'night') {
      document.body.classList.add('night-mode');
      themeIcon.classList.remove('fa-moon');
      themeIcon.classList.add('fa-sun'); // Set sun icon for night mode
      // Add dark mode parameter to iframe src
      iframe.src = baseIframeSrc + "&theme=dark";
    } else {
      iframe.src = baseIframeSrc; // Set the default src without dark mode
    }
  
    themeToggleBtn.addEventListener('click', function() {
      document.body.classList.toggle('night-mode');
      
      // Toggle the icon between sun and moon
      if (document.body.classList.contains('night-mode')) {
        themeIcon.classList.remove('fa-moon');
        themeIcon.classList.add('fa-sun');
        localStorage.setItem('theme', 'night');
        
        // Change iframe src to force reload
        iframe.src = ""; // Clear the src
        iframe.src = baseIframeSrc + "&darkmode=true"; // Update iframe src for dark mode
      } else {
        themeIcon.classList.remove('fa-sun');
        themeIcon.classList.add('fa-moon');
        localStorage.setItem('theme', 'day');
        
        // Change iframe src to force reload
        iframe.src = ""; // Clear the src
        iframe.src = baseIframeSrc; // Reset iframe src to default
      }
    });
  </script>

<script>
  // Wait for 5 seconds before showing the popup
  setTimeout(function() {
      // Check if the user has seen the popup before
      if (!localStorage.getItem('popupShown')) {
          // Show the popup if it hasn't been shown yet
          document.getElementById('popup').style.display = 'flex';

          // Set a flag in localStorage so the popup won't show again
          localStorage.setItem('popupShown', 'true');
      }
  }, 5000); // 5000 milliseconds = 5 seconds

  // Function to close the popup and hide it
  function closePopup() {
      document.getElementById('popup').style.display = 'none';
  }
</script>
  

    <script async src="https://cse.google.com/cse.js?cx=548338c60d2224ac4"></script>
        <script src="/static/js/homepage.js"></script>
</body>

</html>