Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633117 Views

Latest files of /cody/atherosai/ui/tabs-03

assets/ cody/atherosai/ui/tabs-03/assets/
4 Items
  • profile-woman.jpg
  • folder.svg
  • profile.jpg
  • image.svg
  • dist/ cody/atherosai/ui/tabs-03/dist/
    1 Items
  • purify.min.js
  • style.css cody/atherosai/ui/tabs-03/style.css
    89 Views
    0 Comments

    body {
    font-family: 'Poppins';
    background-color: #dfdfdf;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    index.html cody/atherosai/ui/tabs-03/index.html
    320 Views
    0 Comments

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Tabs</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    script.js cody/atherosai/ui/tabs-03/script.js
    167 Views
    0 Comments

    const allLinks = document.querySelectorAll(".tabs a");
    const allTabs = document.querySelectorAll(".tab-content");

    allLinks.forEach((elem) => {
    elem.addEventListener('click', function() {
    const linkId = elem.id;
    const hrefLinkClick = elem.href;