It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://jasa.biz.id

  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3.  <head>
  4.    <meta charset="utf-8" />
  5.    <meta name="application-name" content="{{ config('app.name') }}" />
  6.    <meta name="csrf-token" content="{{ csrf_token() }}" />
  7.    <meta name="viewport" content="width=device-width, initial-scale=1" />
  8.    <title>This is me | JDevs-ID</title>
  9.    <!-- Favicon -->
  10.    <script src="https://cdn.tailwindcss.com"></script>
  11.    <link
  12.      rel="icon"
  13.      type="image/png"
  14.      href="https://avatars.githubusercontent.com/u/57583609"
  15.    />
  16.    <script>
  17.      document.addEventListener("DOMContentLoaded", function () {
  18.        const text =
  19.          "Life as Abdullah, Developer, Data & System Analyst, Server Engineer";
  20.        const typewriterElement = document.getElementById("typewriter");
  21.        let index = 0;
  22.  
  23.        function type() {
  24.          if (index < text.length) {
  25.            typewriterElement.textContent += text.charAt(index);
  26.            index++;
  27.            setTimeout(type, 100); // Adjust typing speed here (in milliseconds)
  28.          }
  29.        }
  30.  
  31.        type(); // Start typing
  32.      });
  33.  
  34.      document.addEventListener("DOMContentLoaded", () => {
  35.        const mobileMenuButton = document.querySelector("#mobile-menu-button");
  36.        const closeMenuButton = document.querySelector("#close-menu-button");
  37.        const mainContent = document.getElementById("main-content");
  38.        const backdrop = document.getElementById("backdrop");
  39.        const mobileMenu = document.getElementById("mobile-menu");
  40.  
  41.        mobileMenuButton.addEventListener("click", () => {
  42.          mobileMenu.classList.remove("hidden"); // Show the menu
  43.          backdrop.classList.remove("hidden"); // Show the backdrop
  44.          mainContent.classList.add("blur"); // Apply blur to main content
  45.        });
  46.  
  47.        closeMenuButton.addEventListener("click", () => {
  48.          mobileMenu.classList.add("hidden"); // Hide the menu
  49.          backdrop.classList.add("hidden"); // Hide the backdrop
  50.          mainContent.classList.remove("blur"); // Remove blur from main content
  51.        });
  52.  
  53.        backdrop.addEventListener("click", () => {
  54.          mobileMenu.classList.add("hidden"); // Hide the menu
  55.          backdrop.classList.add("hidden"); // Hide the backdrop
  56.          mainContent.classList.remove("blur"); // Remove blur from main content
  57.        });
  58.      });
  59.    </script>
  60.  </head>
  61.  
  62.  <body class="antialiased h-screen overflow-y-auto">
  63.    <div class="bg-white">
  64.      <header class="absolute inset-x-0 top-0 z-50">
  65.        <nav
  66.          class="flex items-center justify-between p-6 lg:px-8"
  67.          aria-label="Global"
  68.        >
  69.          <div class="flex lg:flex-1">
  70.            <a href="#" class="-m-1.5 p-1.5">
  71.              <span class="sr-only">Tri Jaya Prasetya</span>
  72.              <img
  73.                class="h-8 w-auto rounded-full"
  74.                src="https://avatars.githubusercontent.com/u/57583609"
  75.                alt=""
  76.              />
  77.            </a>
  78.          </div>
  79.          <div class="flex lg:hidden">
  80.            <button
  81.              id="mobile-menu-button"
  82.              type="button"
  83.              class="-m-2.5 inline-flex items-center justify-center rounded-md p-2.5 text-gray-700"
  84.            >
  85.              <span class="sr-only">Open main menu</span>
  86.              <svg
  87.                class="h-6 w-6"
  88.                fill="none"
  89.                viewBox="0 0 24 24"
  90.                stroke-width="1.5"
  91.                stroke="currentColor"
  92.                aria-hidden="true"
  93.              >
  94.                <path
  95.                  stroke-linecap="round"
  96.                  stroke-linejoin="round"
  97.                  d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"
  98.                />
  99.              </svg>
  100.            </button>
  101.          </div>
  102.          <!-- <div class="hidden lg:flex lg:gap-x-12">
  103.                    <a href="#" class="text-sm font-semibold leading-6 text-gray-900">Articles</a>
  104.                    <a href="#" class="text-sm font-semibold leading-6 text-gray-900">Galleries</a>
  105.                    <a href="#" class="text-sm font-semibold leading-6 text-gray-900">Projects</a>
  106.                    <a href="#" class="text-sm font-semibold leading-6 text-gray-900">Portfolio</a>
  107.                </div> -->
  108.          <div class="hidden lg:flex lg:flex-1 lg:justify-end">
  109.            <a
  110.              href="https://github.com/JDevs-id"
  111.              target="_blank"
  112.              class="text-sm font-semibold leading-6 text-gray-900"
  113.              >go on my github <span aria-hidden="true">&rarr;</span></a
  114.            >
  115.          </div>
  116.        </nav>
  117.        <!-- Mobile menu, show/hide based on menu open state. -->
  118.        <div
  119.          id="mobile-menu"
  120.          class="lg:hidden hidden"
  121.          role="dialog"
  122.          aria-modal="true"
  123.        >
  124.          <!-- Background backdrop, show/hide based on slide-over state. -->
  125.          <div
  126.            id="backdrop"
  127.            class="fixed inset-0 z-50 hidden bg-black opacity-50"
  128.          ></div>
  129.          <div
  130.            class="fixed inset-y-0 right-0 z-50 w-full overflow-y-auto bg-white bg-opacity-50 px-6 py-6 sm:max-w-sm sm:ring-1 sm:ring-gray-900/10"
  131.          >
  132.            <div class="flex items-center justify-between">
  133.              <a href="#" class="-m-1.5 p-1.5">
  134.                <span class="sr-only">Tri Jaya Prasetya</span>
  135.                <img
  136.                  class="h-8 w-auto rounded-full"
  137.                  src="https://lh3.googleusercontent.com/a/ACg8ocIJi9HmNv1MEE8g6fSsV0Ir9Y3sLfbX2XuZdcrll1cLhMph4-Jf=s288-c-no"
  138.                  alt=""
  139.                />
  140.              </a>
  141.              <button
  142.                id="close-menu-button"
  143.                type="button"
  144.                class="-m-2.5 rounded-md p-2.5 text-gray-700"
  145.              >
  146.                <span class="sr-only">Close menu</span>
  147.                <svg
  148.                  class="h-6 w-6"
  149.                  fill="none"
  150.                  viewBox="0 0 24 24"
  151.                  stroke-width="1.5"
  152.                  stroke="currentColor"
  153.                  aria-hidden="true"
  154.                >
  155.                  <path
  156.                    stroke-linecap="round"
  157.                    stroke-linejoin="round"
  158.                    d="M6 18L18 6M6 6l12 12"
  159.                  />
  160.                </svg>
  161.              </button>
  162.            </div>
  163.            <div class="mt-6 flow-root">
  164.              <div class="-my-6 divide-y divide-gray-500/10">
  165.                <!-- <div class="space-y-2 py-6">
  166.                                <a href="#" class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50">Articles</a>
  167.                                <a href="#" class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50">Galleries</a>
  168.                                <a href="#" class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50">Projects</a>
  169.                                <a href="#" class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50">Portfolio</a>
  170.                            </div> -->
  171.                <div class="py-6">
  172.                  <a
  173.                    href="https://github.com/JDevs-id"
  174.                    target="_blank"
  175.                    class="-mx-3 block rounded-lg px-3 py-2.5 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50"
  176.                    >go on my github <span aria-hidden="true">&rarr;</span></a
  177.                  >
  178.                </div>
  179.              </div>
  180.            </div>
  181.          </div>
  182.        </div>
  183.      </header>
  184.  
  185.      <div class="relative isolate px-6 pt-14 lg:px-8" id="main-content">
  186.        <div
  187.          class="absolute inset-x-0 -top-40 -z-10 transform-gpu overflow-hidden blur-3xl sm:-top-80"
  188.          aria-hidden="true"
  189.        >
  190.          <div
  191.            class="relative left-[calc(50%-11rem)] aspect-[1155/678] w-[36.125rem] -translate-x-1/2 rotate-[30deg] bg-gradient-to-tr from-[#3498db] to-[#9089fc] opacity-50 sm:left-[calc(50%-30rem)] sm:w-[72.1875rem]"
  192.            style="
  193.              clip-path: polygon(
  194.                74.1% 44.1%,
  195.                100% 61.6%,
  196.                97.5% 26.9%,
  197.                85.5% 0.1%,
  198.                80.7% 2%,
  199.                72.5% 32.5%,
  200.                60.2% 62.4%,
  201.                52.4% 68.1%,
  202.                47.5% 58.3%,
  203.                45.2% 34.5%,
  204.                27.5% 76.7%,
  205.                0.1% 64.9%,
  206.                17.9% 100%,
  207.                27.6% 76.8%,
  208.                76.1% 97.7%,
  209.                74.1% 44.1%
  210.              );
  211.            "
  212.          ></div>
  213.        </div>
  214.        <div class="mx-auto max-w-2xl py-32 sm:py-48 lg:py-56">
  215.          <div class="flex justify-center mb-4">
  216.            <div
  217.              class="relative rounded-full px-3 py-1 text-sm leading-6 text-gray-600 ring-1 ring-gray-900/10 hover:ring-gray-900/20"
  218.            >
  219.              <a href="#" class="font-semibold text-indigo-600">
  220.                <span class="absolute inset-0" aria-hidden="true"></span>This is
  221.                me,
  222.              </a>
  223.            </div>
  224.          </div>
  225.          <div class="text-center">
  226.            <div class="flex lg:flex-1 justify-center">
  227.              <a href="#" class="-m-1.5 p-1.5">
  228.                <span class="sr-only">Tri Jaya Prasetya</span>
  229.                <img
  230.                  class="h-48 w-auto rounded-full"
  231.                  src="https://lh3.googleusercontent.com/a/ACg8ocIJi9HmNv1MEE8g6fSsV0Ir9Y3sLfbX2XuZdcrll1cLhMph4-Jf=s288-c-no"
  232.                  alt=""
  233.                />
  234.              </a>
  235.            </div>
  236.            <p class="text-2xl font-bold mt-6 text-lg leading-8 text-gray-600">
  237.              Tri Jaya Prasetya
  238.            </p>
  239.            <h1
  240.              id="typewriter"
  241.              class="text-2xl font-bold tracking-tight text-gray-900 sm:text-3xl"
  242.            ></h1>
  243.            <div class="mt-10 flex items-center justify-center gap-x-6">
  244.              <a
  245.                href="mailto:trijayaprasetya@gmail.com"
  246.                target="_blank"
  247.                class="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
  248.              >
  249.                Mail me
  250.              </a>
  251.              <a
  252.                href="https://www.linkedin.com/in/tri-jaya-prasetya/"
  253.                target="_blank"
  254.                class="text-sm font-semibold leading-6 text-gray-900"
  255.                >visit me on linkedIn <span aria-hidden="true">→</span></a
  256.              >
  257.            </div>
  258.          </div>
  259.        </div>
  260.        <div
  261.          class="absolute inset-x-0 top-[calc(100%-13rem)] -z-10 transform-gpu overflow-hidden blur-3xl sm:top-[calc(100%-30rem)]"
  262.          aria-hidden="true"
  263.        >
  264.          <div
  265.            class="relative left-[calc(50%+3rem)] aspect-[1155/678] w-[36.125rem] -translate-x-1/2 bg-gradient-to-tr from-[#3498db] to-[#9089fc] opacity-50 sm:left-[calc(50%+36rem)] sm:w-[72.1875rem]"
  266.            style="
  267.              clip-path: polygon(
  268.                74.1% 44.1%,
  269.                100% 61.6%,
  270.                97.5% 26.9%,
  271.                85.5% 0.1%,
  272.                80.7% 2%,
  273.                72.5% 32.5%,
  274.                60.2% 62.4%,
  275.                52.4% 68.1%,
  276.                47.5% 58.3%,
  277.                45.2% 34.5%,
  278.                27.5% 76.7%,
  279.                0.1% 64.9%,
  280.                17.9% 100%,
  281.                27.6% 76.8%,
  282.                76.1% 97.7%,
  283.                74.1% 44.1%
  284.              );
  285.            "
  286.          ></div>
  287.        </div>
  288.      </div>
  289.    </div>
  290.  </body>
  291. </html>
  292.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda