Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>AccessAbility Hub - Assistive Technology Resource Center</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); | |
body { | |
font-family: 'Poppins', sans-serif; | |
scroll-behavior: smooth; | |
} | |
.skip-link { | |
position: absolute; | |
top: -40px; | |
left: 0; | |
background: #3b82f6; | |
color: white; | |
padding: 8px; | |
z-index: 100; | |
} | |
.skip-link:focus { | |
top: 0; | |
} | |
.card-hover:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
} | |
.video-container { | |
position: relative; | |
padding-bottom: 56.25%; | |
height: 0; | |
overflow: hidden; | |
} | |
.video-container iframe { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
} | |
[data-a11y-toggle] { | |
cursor: pointer; | |
} | |
.toggle-content { | |
max-height: 0; | |
overflow: hidden; | |
transition: max-height 0.3s ease; | |
} | |
.toggle-content.active { | |
max-height: 1000px; | |
} | |
/* Focus styles for better keyboard navigation */ | |
:focus { | |
outline: 3px solid #3b82f6; | |
outline-offset: 3px; | |
} | |
/* Dark mode toggle styles */ | |
.dark-mode-toggle { | |
transition: all 0.3s ease; | |
} | |
.dark .dark-bg { | |
background-color: #1f2937; | |
} | |
.dark .dark-text { | |
color: #f3f4f6; | |
} | |
.dark .dark-card { | |
background-color: #374151; | |
border-color: #4b5563; | |
} | |
</style> | |
</head> | |
<body class="bg-gray-50 text-gray-800 transition-colors duration-300"> | |
<!-- Skip to Content Link for Screen Readers --> | |
<a href="#main-content" class="skip-link">Skip to main content</a> | |
<!-- Dark Mode Toggle --> | |
<button id="darkModeToggle" class="fixed bottom-6 right-6 z-50 bg-blue-500 text-white p-3 rounded-full shadow-lg dark-mode-toggle" aria-label="Toggle dark mode"> | |
<i class="fas fa-moon"></i> | |
</button> | |
<!-- Header --> | |
<header class="bg-white shadow-sm sticky top-0 z-40 dark:bg-gray-800 transition-colors duration-300"> | |
<div class="container mx-auto px-4 py-3"> | |
<div class="flex justify-between items-center"> | |
<div class="flex items-center"> | |
<a href="#" class="flex items-center"> | |
<i class="fas fa-universal-access text-blue-500 text-3xl mr-2"></i> | |
<span class="text-xl font-bold dark:text-white">AccessAbility Hub</span> | |
</a> | |
</div> | |
<nav class="hidden md:flex items-center space-x-8"> | |
<a href="#resources" class="text-gray-700 hover:text-blue-500 dark:text-gray-300 dark:hover:text-blue-400">Resources</a> | |
<a href="#community" class="text-gray-700 hover:text-blue-500 dark:text-gray-300 dark:hover:text-blue-400">Community</a> | |
<a href="#events" class="text-gray-700 hover:text-blue-500 dark:text-gray-300 dark:hover:text-blue-400">Events</a> | |
<a href="#about" class="text-gray-700 hover:text-blue-500 dark:text-gray-300 dark:hover:text-blue-400">About</a> | |
<a href="#contact" class="text-gray-700 hover:text-blue-500 dark:text-gray-300 dark:hover:text-blue-400">Contact</a> | |
</nav> | |
<div class="flex items-center space-x-4"> | |
<button id="searchToggle" class="text-gray-700 hover:text-blue-500 dark:text-gray-300 dark:hover:text-blue-400" aria-label="Toggle search"> | |
<i class="fas fa-search"></i> | |
</button> | |
<a href="#" class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg transition-colors">Sign In</a> | |
<button id="mobileMenuToggle" class="md:hidden text-gray-700 dark:text-gray-300" aria-label="Toggle mobile menu"> | |
<i class="fas fa-bars text-xl"></i> | |
</button> | |
</div> | |
</div> | |
<!-- Search Bar --> | |
<div id="searchBar" class="hidden mt-4"> | |
<div class="relative"> | |
<input type="text" placeholder="Search resources, articles, and more..." | |
class="w-full p-3 pl-10 rounded-lg border border-gray-300 focus:border-blue-500 focus:ring-2 focus:ring-blue-200 dark:bg-gray-700 dark:border-gray-600 dark:text-white" | |
aria-label="Search input"> | |
<i class="fas fa-search absolute left-3 top-3.5 text-gray-400"></i> | |
</div> | |
</div> | |
<!-- Mobile Menu --> | |
<div id="mobileMenu" class="hidden md:hidden mt-4"> | |
<div class="flex flex-col space-y-3"> | |
<a href="#resources" class="block py-2 px-4 rounded-lg hover:bg-gray-100 dark:hover:bg-gray-700">Resources</a> | |
<a href="#community" class="block py-2 px-4 rounded-lg hover:bg-gray-100 dark:hover:bg-gray-700">Community</a> | |
<a href="#events" class="block py-2 px-4 rounded-lg hover:bg-gray-100 dark:hover:bg-gray-700">Events</a> | |
<a href="#about" class="block py-2 px-4 rounded-lg hover:bg-gray-100 dark:hover:bg-gray-700">About</a> | |
<a href="#contact" class="block py-2 px-4 rounded-lg hover:bg-gray-100 dark:hover:bg-gray-700">Contact</a> | |
<div class="pt-2 border-t border-gray-200 dark:border-gray-700"> | |
<a href="#" class="block bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg text-center transition-colors">Sign In</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</header> | |
<!-- Hero Section --> | |
<section class="bg-gradient-to-r from-blue-500 to-blue-700 text-white py-16 dark:from-blue-600 dark:to-blue-800"> | |
<div class="container mx-auto px-4"> | |
<div class="flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-8 md:mb-0"> | |
<h1 class="text-4xl md:text-5xl font-bold mb-4">Empowering Through Assistive Technology</h1> | |
<p class="text-xl mb-6">Your comprehensive resource center for tools, guides, and community support to enhance accessibility for everyone.</p> | |
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4"> | |
<a href="#resources" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium text-center transition-colors">Explore Resources</a> | |
<a href="#community" class="bg-transparent border-2 border-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-lg font-medium text-center transition-colors">Join Community</a> | |
</div> | |
</div> | |
<div class="md:w-1/2"> | |
<img src="https://images.unsplash.com/photo-1541462608143-67571c6738dd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="Diverse group of people using various assistive technologies" | |
class="rounded-lg shadow-xl w-full h-auto object-cover"> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Accessibility Quick Settings --> | |
<section class="bg-gray-100 py-8 dark:bg-gray-700"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-2xl font-bold mb-6 text-center dark:text-white">Accessibility Settings</h2> | |
<div class="grid grid-cols-2 md:grid-cols-4 gap-4"> | |
<button class="flex flex-col items-center justify-center bg-white p-4 rounded-lg shadow hover:shadow-md transition-shadow dark:bg-gray-600 dark:text-white" | |
data-a11y-toggle="fontSize"> | |
<i class="fas fa-text-height text-2xl mb-2 text-blue-500"></i> | |
<span>Text Size</span> | |
</button> | |
<button class="flex flex-col items-center justify-center bg-white p-4 rounded-lg shadow hover:shadow-md transition-shadow dark:bg-gray-600 dark:text-white" | |
data-a11y-toggle="contrast"> | |
<i class="fas fa-adjust text-2xl mb-2 text-blue-500"></i> | |
<span>High Contrast</span> | |
</button> | |
<button class="flex flex-col items-center justify-center bg-white p-4 rounded-lg shadow hover:shadow-md transition-shadow dark:bg-gray-600 dark:text-white" | |
data-a11y-toggle="dyslexia"> | |
<i class="fas fa-font text-2xl mb-2 text-blue-500"></i> | |
<span>Dyslexia Font</span> | |
</button> | |
<button class="flex flex-col items-center justify-center bg-white p-4 rounded-lg shadow hover:shadow-md transition-shadow dark:bg-gray-600 dark:text-white" | |
data-a11y-toggle="readMode"> | |
<i class="fas fa-book-reader text-2xl mb-2 text-blue-500"></i> | |
<span>Reading Mode</span> | |
</button> | |
</div> | |
<div id="fontSizeOptions" class="toggle-content mt-4 bg-white p-4 rounded-lg shadow dark:bg-gray-600 dark:text-white"> | |
<h3 class="font-bold mb-2">Adjust Text Size</h3> | |
<div class="flex items-center space-x-4"> | |
<button class="text-sm px-3 py-1 bg-gray-200 rounded dark:bg-gray-500" data-font-size="small">Small</button> | |
<button class="text-base px-3 py-1 bg-gray-200 rounded dark:bg-gray-500" data-font-size="medium">Medium</button> | |
<button class="text-lg px-3 py-1 bg-gray-200 rounded dark:bg-gray-500" data-font-size="large">Large</button> | |
<button class="text-xl px-3 py-1 bg-gray-200 rounded dark:bg-gray-500" data-font-size="xlarge">Extra Large</button> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Main Content --> | |
<main id="main-content" class="py-12"> | |
<!-- Resources Section --> | |
<section id="resources" class="container mx-auto px-4 mb-16"> | |
<div class="flex justify-between items-center mb-8"> | |
<h2 class="text-3xl font-bold dark:text-white">Assistive Technology Resources</h2> | |
<div class="flex space-x-2"> | |
<button class="px-3 py-1 bg-gray-200 rounded-full text-sm dark:bg-gray-600 dark:text-white">All</button> | |
<button class="px-3 py-1 bg-gray-200 rounded-full text-sm dark:bg-gray-600 dark:text-white">Visual</button> | |
<button class="px-3 py-1 bg-gray-200 rounded-full text-sm dark:bg-gray-600 dark:text-white">Hearing</button> | |
<button class="px-3 py-1 bg-gray-200 rounded-full text-sm dark:bg-gray-600 dark:text-white">Mobility</button> | |
<button class="px-3 py-1 bg-gray-200 rounded-full text-sm dark:bg-gray-600 dark:text-white">Cognitive</button> | |
</div> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Resource Card 1 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 card-hover dark:bg-gray-700 dark:border dark:border-gray-600"> | |
<div class="video-container"> | |
<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" title="Introduction to Screen Readers" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> | |
</div> | |
<div class="p-6"> | |
<div class="flex items-center mb-2"> | |
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded dark:bg-blue-900 dark:text-blue-300">Visual</span> | |
<span class="ml-2 text-gray-500 text-sm dark:text-gray-400">15 min</span> | |
</div> | |
<h3 class="text-xl font-bold mb-2 dark:text-white">Screen Reader Basics</h3> | |
<p class="text-gray-600 mb-4 dark:text-gray-300">Learn how to use screen readers like JAWS and NVDA to navigate digital content effectively.</p> | |
<div class="flex justify-between items-center"> | |
<div class="flex items-center"> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<span class="text-gray-700 dark:text-gray-300">4.8</span> | |
</div> | |
<a href="#" class="text-blue-500 hover:text-blue-700 font-medium dark:text-blue-400">View Details</a> | |
</div> | |
</div> | |
</div> | |
<!-- Resource Card 2 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 card-hover dark:bg-gray-700 dark:border dark:border-gray-600"> | |
<img src="https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="Person using a specialized keyboard with large keys" | |
class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<div class="flex items-center mb-2"> | |
<span class="bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded dark:bg-green-900 dark:text-green-300">Mobility</span> | |
<span class="ml-2 text-gray-500 text-sm dark:text-gray-400">Article</span> | |
</div> | |
<h3 class="text-xl font-bold mb-2 dark:text-white">Adaptive Keyboards Guide</h3> | |
<p class="text-gray-600 mb-4 dark:text-gray-300">Comprehensive review of adaptive keyboards for users with limited mobility or dexterity challenges.</p> | |
<div class="flex justify-between items-center"> | |
<div class="flex items-center"> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<span class="text-gray-700 dark:text-gray-300">4.6</span> | |
</div> | |
<a href="#" class="text-blue-500 hover:text-blue-700 font-medium dark:text-blue-400">Read Article</a> | |
</div> | |
</div> | |
</div> | |
<!-- Resource Card 3 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 card-hover dark:bg-gray-700 dark:border dark:border-gray-600"> | |
<div class="p-6"> | |
<div class="flex items-center mb-2"> | |
<span class="bg-purple-100 text-purple-800 text-xs font-medium px-2.5 py-0.5 rounded dark:bg-purple-900 dark:text-purple-300">Cognitive</span> | |
<span class="ml-2 text-gray-500 text-sm dark:text-gray-400">Tool</span> | |
</div> | |
<h3 class="text-xl font-bold mb-2 dark:text-white">Focus@Will App</h3> | |
<p class="text-gray-600 mb-4 dark:text-gray-300">Music service scientifically optimized to help people with ADHD and other focus challenges.</p> | |
<div class="flex items-center mb-4"> | |
<div class="flex"> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star-half-alt text-yellow-400"></i> | |
</div> | |
<span class="ml-2 text-gray-700 dark:text-gray-300">4.3 (1.2k)</span> | |
</div> | |
<div class="flex space-x-3"> | |
<a href="#" class="flex-1 bg-blue-500 hover:bg-blue-600 text-white text-center py-2 rounded-lg transition-colors">Try Free</a> | |
<a href="#" class="flex-1 border border-blue-500 text-blue-500 hover:bg-blue-50 text-center py-2 rounded-lg transition-colors dark:hover:bg-gray-600">Learn More</a> | |
</div> | |
</div> | |
</div> | |
<!-- Resource Card 4 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 card-hover dark:bg-gray-700 dark:border dark:border-gray-600"> | |
<img src="https://images.unsplash.com/photo-1560869713-9d9a64f6d8e9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="Hearing aid device on a table" | |
class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<div class="flex items-center mb-2"> | |
<span class="bg-red-100 text-red-800 text-xs font-medium px-2.5 py-0.5 rounded dark:bg-red-900 dark:text-red-300">Hearing</span> | |
<span class="ml-2 text-gray-500 text-sm dark:text-gray-400">Comparison</span> | |
</div> | |
<h3 class="text-xl font-bold mb-2 dark:text-white">Hearing Aid Tech 2023</h3> | |
<p class="text-gray-600 mb-4 dark:text-gray-300">Latest advancements in hearing aid technology and how to choose the right one for your needs.</p> | |
<div class="flex justify-between items-center"> | |
<div class="flex items-center"> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<span class="text-gray-700 dark:text-gray-300">4.7</span> | |
</div> | |
<a href="#" class="text-blue-500 hover:text-blue-700 font-medium dark:text-blue-400">View Comparison</a> | |
</div> | |
</div> | |
</div> | |
<!-- Resource Card 5 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 card-hover dark:bg-gray-700 dark:border dark:border-gray-600"> | |
<div class="p-6"> | |
<div class="flex items-center mb-2"> | |
<span class="bg-yellow-100 text-yellow-800 text-xs font-medium px-2.5 py-0.5 rounded dark:bg-yellow-900 dark:text-yellow-300">Visual</span> | |
<span class="ml-2 text-gray-500 text-sm dark:text-gray-400">Guide</span> | |
</div> | |
<h3 class="text-xl font-bold mb-2 dark:text-white">Braille Displays Explained</h3> | |
<p class="text-gray-600 mb-4 dark:text-gray-300">Everything you need to know about refreshable braille displays and how they work with modern devices.</p> | |
<div class="flex justify-between items-center"> | |
<div class="flex items-center"> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<span class="text-gray-700 dark:text-gray-300">4.9</span> | |
</div> | |
<a href="#" class="text-blue-500 hover:text-blue-700 font-medium dark:text-blue-400">Download Guide</a> | |
</div> | |
</div> | |
</div> | |
<!-- Resource Card 6 --> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 card-hover dark:bg-gray-700 dark:border dark:border-gray-600"> | |
<div class="video-container"> | |
<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" title="Voice Recognition Software Tutorial" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> | |
</div> | |
<div class="p-6"> | |
<div class="flex items-center mb-2"> | |
<span class="bg-indigo-100 text-indigo-800 text-xs font-medium px-2.5 py-0.5 rounded dark:bg-indigo-900 dark:text-indigo-300">Mobility</span> | |
<span class="ml-2 text-gray-500 text-sm dark:text-gray-400">25 min</span> | |
</div> | |
<h3 class="text-xl font-bold mb-2 dark:text-white">Voice Control Mastery</h3> | |
<p class="text-gray-600 mb-4 dark:text-gray-300">Advanced techniques for using voice recognition software to control your computer and smart home.</p> | |
<div class="flex justify-between items-center"> | |
<div class="flex items-center"> | |
<i class="fas fa-star text-yellow-400 mr-1"></i> | |
<span class="text-gray-700 dark:text-gray-300">4.5</span> | |
</div> | |
<a href="#" class="text-blue-500 hover:text-blue-700 font-medium dark:text-blue-400">Watch Tutorial</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="text-center mt-10"> | |
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-colors"> | |
View All Resources | |
<i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</section> | |
<!-- Community Section --> | |
<section id="community" class="bg-gray-100 py-16 dark:bg-gray-700"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold mb-8 text-center dark:text-white">Join Our Community</h2> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<!-- Forum Card --> | |
<div class="bg-white rounded-lg shadow-md p-6 transition-all duration-300 hover:shadow-lg dark:bg-gray-600 dark:text-white"> | |
<div class="flex items-center mb-4"> | |
<div class="bg-blue-100 p-3 rounded-full mr-4 dark:bg-blue-800"> | |
<i class="fas fa-comments text-blue-500 text-xl dark:text-blue-300"></i> | |
</div> | |
<h3 class="text-xl font-bold">Discussion Forums</h3> | |
</div> | |
<p class="text-gray-600 mb-4 dark:text-gray-300">Connect with others, ask questions, and share experiences about assistive technology solutions.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-sm text-gray-500 dark:text-gray-400">1,200+ active discussions</span> | |
<a href="#" class="text-blue-500 hover:text-blue-700 font-medium dark:text-blue-400">Visit Forums</a> | |
</div> | |
</div> | |
<!-- Expert Q&A Card --> | |
<div class="bg-white rounded-lg shadow-md p-6 transition-all duration-300 hover:shadow-lg dark:bg-gray-600 dark:text-white"> | |
<div class="flex items-center mb-4"> | |
<div class="bg-green-100 p-3 rounded-full mr-4 dark:bg-green-800"> | |
<i class="fas fa-user-tie text-green-500 text-xl dark:text-green-300"></i> | |
</div> | |
<h3 class="text-xl font-bold">Expert Q&A</h3> | |
</div> | |
<p class="text-gray-600 mb-4 dark:text-gray-300">Get answers from our network of assistive technology specialists and accessibility professionals.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-sm text-gray-500 dark:text-gray-400">50+ experts available</span> | |
<a href="#" class="text-blue-500 hover:text-blue-700 font-medium dark:text-blue-400">Ask a Question</a> | |
</div> | |
</div> | |
<!-- User Stories Card --> | |
<div class="bg-white rounded-lg shadow-md p-6 transition-all duration-300 hover:shadow-lg dark:bg-gray-600 dark:text-white"> | |
<div class="flex items-center mb-4"> | |
<div class="bg-purple-100 p-3 rounded-full mr-4 dark:bg-purple-800"> | |
<i class="fas fa-users text-purple-500 text-xl dark:text-purple-300"></i> | |
</div> | |
<h3 class="text-xl font-bold">Success Stories</h3> | |
</div> | |
<p class="text-gray-600 mb-4 dark:text-gray-300">Read inspiring stories about how assistive technology has transformed people's lives.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-sm text-gray-500 dark:text-gray-400">350+ stories shared</span> | |
<a href="#" class="text-blue-500 hover:text-blue-700 font-medium dark:text-blue-400">Read Stories</a> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonials --> | |
<div class="mt-16"> | |
<h3 class="text-2xl font-bold mb-8 text-center dark:text-white">What Our Community Says</h3> | |
<div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
<!-- Testimonial 1 --> | |
<div class="bg-white p-6 rounded-lg shadow-md dark:bg-gray-600 dark:text-white"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold">Sarah Johnson</h4> | |
<p class="text-gray-500 text-sm dark:text-gray-400">Parent & Advocate</p> | |
</div> | |
</div> | |
<p class="text-gray-600 italic mb-4 dark:text-gray-300">"The resources here helped me find the perfect communication device for my nonverbal son. The community support was invaluable during our journey."</p> | |
<div class="flex"> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
</div> | |
</div> | |
<!-- Testimonial 2 --> | |
<div class="bg-white p-6 rounded-lg shadow-md dark:bg-gray-600 dark:text-white"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold">Michael Chen</h4> | |
<p class="text-gray-500 text-sm dark:text-gray-400">IT Accessibility Specialist</p> | |
</div> | |
</div> | |
<p class="text-gray-600 italic mb-4 dark:text-gray-300">"As a professional in the field, I regularly recommend this site to clients. The up-to-date information and comprehensive guides are unmatched."</p> | |
<div class="flex"> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Events Section --> | |
<section id="events" class="py-16"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold mb-8 text-center dark:text-white">Upcoming Events & Webinars</h2> | |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8"> | |
<!-- Featured Event --> | |
<div class="bg-white rounded-lg shadow-lg overflow-hidden dark:bg-gray-700 dark:border dark:border-gray-600"> | |
<div class="md:flex"> | |
<div class="md:w-1/3 bg-blue-500 p-6 flex flex-col items-center justify-center text-white"> | |
<div class="text-4xl font-bold">15</div> | |
<div class="text-xl uppercase">June</div> | |
<div class="mt-4 text-center"> | |
<div class="text-sm">2:00 PM - 3:30 PM</div> | |
<div class="text-sm">EST</div> | |
</div> | |
</div> | |
<div class="md:w-2/3 p-6"> | |
<div class="uppercase tracking-wide text-sm text-blue-500 font-semibold dark:text-blue-400">Featured Event</div> | |
<h3 class="text-xl font-bold mt-1 mb-2 dark:text-white">Assistive Tech Expo 2023</h3> | |
<p class="text-gray-600 mb-4 dark:text-gray-300">Virtual showcase of the latest innovations in assistive technology with live demos and Q&A sessions.</p> | |
<div class="flex items-center text-sm text-gray-500 mb-4 dark:text-gray-400"> | |
<i class="fas fa-map-marker-alt mr-2"></i> | |
<span>Online Event</span> | |
</div> | |
<div class="flex justify-between items-center"> | |
<span class="text-sm text-gray-500 dark:text-gray-400">120 attendees registered</span> | |
<a href="#" class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg text-sm transition-colors">Register Now</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Events List --> | |
<div> | |
<!-- Event 1 --> | |
<div class="bg-white rounded-lg shadow-md p-6 mb-4 dark:bg-gray-700 dark:border dark:border-gray-600"> | |
<div class="flex"> | |
<div class="flex-shrink-0 mr-4"> | |
<div class="flex flex-col items-center justify-center bg-gray-100 text-gray-800 rounded-lg p-3 w-16 dark:bg-gray-600 dark:text-white"> | |
<div class="text-lg font-bold">20</div> | |
<div class="text-xs uppercase">May</div> | |
</div> | |
</div> | |
<div> | |
<h3 class="text-lg font-bold mb-1 dark:text-white">Accessibility in Education</h3> | |
<p class="text-gray-600 text-sm mb-2 dark:text-gray-400">Webinar on implementing assistive technology in classrooms.</p> | |
<div class="flex items-center text-xs text-gray-500 dark:text-gray-400"> | |
<i class="fas fa-clock mr-1"></i> | |
<span>1:00 PM - 2:30 PM EST</span> | |
</div> | |
<a href="#" class="inline-block mt-2 text-blue-500 hover:text-blue-700 text-sm font-medium dark:text-blue-400">Learn More</a> | |
</div> | |
</div> | |
</div> | |
<!-- Event 2 --> | |
<div class="bg-white rounded-lg shadow-md p-6 mb-4 dark:bg-gray-700 dark:border dark:border-gray-600"> | |
<div class="flex"> | |
<div class="flex-shrink-0 mr-4"> | |
<div class="flex flex-col items-center justify-center bg-gray-100 text-gray-800 rounded-lg p-3 w-16 dark:bg-gray-600 dark:text-white"> | |
<div class="text-lg font-bold">05</div> | |
<div class="text-xs uppercase">June</div> | |
</div> | |
</div> | |
<div> | |
<h3 class="text-lg font-bold mb-1 dark:text-white">Voice Recognition Workshop</h3> | |
<p class="text-gray-600 text-sm mb-2 dark:text-gray-400">Hands-on session for mastering voice control software.</p> | |
<div class="flex items-center text-xs text-gray-500 dark:text-gray-400"> | |
<i class="fas fa-clock mr-1"></i> | |
<span>10:00 AM - 12:00 PM EST</span> | |
</div> | |
<a href="#" class="inline-block mt-2 text-blue-500 hover:text-blue-700 text-sm font-medium dark:text-blue-400">Learn More</a> | |
</div> | |
</div> | |
</div> | |
<!-- Event 3 --> | |
<div class="bg-white rounded-lg shadow-md p-6 dark:bg-gray-700 dark:border dark:border-gray-600"> | |
<div class="flex"> | |
<div class="flex-shrink-0 mr-4"> | |
<div class="flex flex-col items-center justify-center bg-gray-100 text-gray-800 rounded-lg p-3 w-16 dark:bg-gray-600 dark:text-white"> | |
<div class="text-lg font-bold">28</div> | |
<div class="text-xs uppercase">June</div> | |
</div> | |
</div> | |
<div> | |
<h3 class="text-lg font-bold mb-1 dark:text-white">Parent Support Group</h3> | |
<p class="text-gray-600 text-sm mb-2 dark:text-gray-400">Monthly meeting for parents navigating assistive technology options.</p> | |
<div class="flex items-center text-xs text-gray-500 dark:text-gray-400"> | |
<i class="fas fa-clock mr-1"></i> | |
<span>7:00 PM - 8:30 PM EST</span> | |
</div> | |
<a href="#" class="inline-block mt-2 text-blue-500 hover:text-blue-700 text-sm font-medium dark:text-blue-400">Learn More</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="text-center mt-10"> | |
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-colors"> | |
View All Events | |
<i class="fas fa-calendar-alt ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</section> | |
<!-- Newsletter Section --> | |
<section class="bg-blue-600 text-white py-12 dark:bg-blue-800"> | |
<div class="container mx-auto px-4"> | |
<div class="max-w-3xl mx-auto text-center"> | |
<h2 class="text-3xl font-bold mb-4">Stay Updated</h2> | |
<p class="text-xl mb-6">Subscribe to our newsletter for the latest assistive technology news, resources, and event announcements.</p> | |
<form class="flex flex-col sm:flex-row gap-3 max-w-lg mx-auto"> | |
<input type="email" placeholder="Your email address" | |
class="flex-grow px-4 py-3 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-300 text-gray-900" | |
aria-label="Email address for newsletter subscription" required> | |
<button type="submit" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium transition-colors"> | |
Subscribe | |
</button> | |
</form> | |
<p class="text-sm mt-4 opacity-80">We respect your privacy. Unsubscribe at any time.</p> | |
</div> | |
</div> | |
</section> | |
<!-- About Section --> | |
<section id="about" class="py-16 bg-gray-50 dark:bg-gray-800"> | |
<div class="container mx-auto px-4"> | |
<div class="flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8"> | |
<h2 class="text-3xl font-bold mb-6 dark:text-white">About AccessAbility Hub</h2> | |
<p class="text-gray-600 mb-4 dark:text-gray-300">Founded in 2018, AccessAbility Hub is dedicated to making assistive technology information accessible to everyone. Our mission is to empower individuals with disabilities, their families, and professionals with comprehensive resources and a supportive community.</p> | |
<p class="text-gray-600 mb-6 dark:text-gray-300">Our team consists of accessibility experts, assistive technology specialists, and passionate advocates who believe in the transformative power of technology to create equal opportunities.</p> | |
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-colors"> | |
Learn More About Us | |
<i class="fas fa-chevron-right ml-2"></i> | |
</a> | |
</div> | |
<div class="md:w-1/2"> | |
<div class="bg-white p-6 rounded-lg shadow-lg dark:bg-gray-700"> | |
<h3 class="text-xl font-bold mb-4 dark:text-white">Our Impact</h3> | |
<div class="grid grid-cols-2 gap-4"> | |
<div class="bg-blue-50 p-4 rounded-lg text-center dark:bg-blue-900 dark:text-white"> | |
<div class="text-3xl font-bold text-blue-600 mb-2 dark:text-blue-300">10,000+</div> | |
<div class="text-gray-600 dark:text-gray-300">Monthly Visitors</div> | |
</div> | |
<div class="bg-green-50 p-4 rounded-lg text-center dark:bg-green-900 dark:text-white"> | |
<div class="text-3xl font-bold text-green-600 mb-2 dark:text-green-300">500+</div> | |
<div class="text-gray-600 dark:text-gray-300">Resources Available</div> | |
</div> | |
<div class="bg-purple-50 p-4 rounded-lg text-center dark:bg-purple-900 dark:text-white"> | |
<div class="text-3xl font-bold text-purple-600 mb-2 dark:text-purple-300">45</div> | |
<div class="text-gray-600 dark:text-gray-300">Countries Reached</div> | |
</div> | |
<div class="bg-yellow-50 p-4 rounded-lg text-center dark:bg-yellow-900 dark:text-white"> | |
<div class="text-3xl font-bold text-yellow-600 mb-2 dark:text-yellow-300">98%</div> | |
<div class="text-gray-600 dark:text-gray-300">User Satisfaction</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section id="contact" class="py-16"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold mb-8 text-center dark:text-white">Contact Us</h2> | |
<div class="flex flex-col md:flex-row gap-8"> | |
<div class="md:w-1/2"> | |
<div class="bg-white p-6 rounded-lg shadow-md dark:bg-gray-700 dark:text-white"> | |
<h3 class="text-xl font-bold mb-4">Get in Touch</h3> | |
<p class="text-gray-600 mb-6 dark:text-gray-300">Have questions, suggestions, or need assistance? Our team is here to help you navigate the world of assistive technology.</p> | |
<div class="space-y-4"> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-full mr-4 dark:bg-blue-800"> | |
<i class="fas fa-envelope text-blue-500 dark:text-blue-300"></i> | |
</div> | |
<div> | |
<h4 class="font-bold">Email Us</h4> | |
<a href="mailto:[email protected]" class="text-blue-500 hover:text-blue-700 dark:text-blue-400">[email protected]</a> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 bg-green-100 p-3 rounded-full mr-4 dark:bg-green-800"> | |
<i class="fas fa-phone-alt text-green-500 dark:text-green-300"></i> | |
</div> | |
<div> | |
<h4 class="font-bold">Call Us</h4> | |
<a href="tel:+18005551234" class="text-blue-500 hover:text-blue-700 dark:text-blue-400">1-800-555-1234</a> | |
<p class="text-sm text-gray-500 dark:text-gray-400">Monday-Friday, 9am-5pm EST</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 bg-purple-100 p-3 rounded-full mr-4 dark:bg-purple-800"> | |
<i class="fas fa-map-marker-alt text-purple-500 dark:text-purple-300"></i> | |
</div> | |
<div> | |
<h4 class="font-bold">Visit Us</h4> | |
<p>123 Accessibility Way<br>Boston, MA 02110</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2"> | |
<div class="bg-white p-6 rounded-lg shadow-md dark:bg-gray-700"> | |
<h3 class="text-xl font-bold mb-4 dark:text-white">Send a Message</h3> | |
<form> | |
<div class="mb-4"> | |
<label for="name" class="block text-gray-700 font-medium mb-2 dark:text-gray-300">Name</label> | |
<input type="text" id="name" | |
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent dark:bg-gray-600 dark:border-gray-500 dark:text-white" | |
aria-label="Your name" required> | |
</div> | |
<div class="mb-4"> | |
<label for="email" class="block text-gray-700 font-medium mb-2 dark:text-gray-300">Email</label> | |
<input type="email" id="email" | |
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent dark:bg-gray-600 dark:border-gray-500 dark:text-white" | |
aria-label="Your email address" required> | |
</div> | |
<div class="mb-4"> | |
<label for="subject" class="block text-gray-700 font-medium mb-2 dark:text-gray-300">Subject</label> | |
<select id="subject" | |
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent dark:bg-gray-600 dark:border-gray-500 dark:text-white" | |
aria-label="Message subject"> | |
<option value="">Select a topic</option> | |
<option value="resource">Resource Question</option> | |
<option value="technical">Technical Support</option> | |
<option value="partnership">Partnership Inquiry</option> | |
<option value="feedback">Feedback/Suggestion</option> | |
<option value="other">Other</option> | |
</select> | |
</div> | |
<div class="mb-4"> | |
<label for="message" class="block text-gray-700 font-medium mb-2 dark:text-gray-300">Message</label> | |
<textarea id="message" rows="4" | |
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent dark:bg-gray-600 dark:border-gray-500 dark:text-white" | |
aria-label="Your message" required></textarea> | |
</div> | |
<button type="submit" class="w-full bg-blue-500 hover:bg-blue-600 text-white font-medium py-2 px-4 rounded-lg transition-colors"> | |
Send Message | |
</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
</main> | |
<!-- Footer --> | |
<footer class="bg-gray-800 text-white py-12"> | |
<div class="container mx-auto px-4"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
<div> | |
<h3 class="text-xl font-bold mb-4">AccessAbility Hub</h3> | |
<p class="text-gray-400 mb-4">Empowering individuals through assistive technology resources and community support.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors" aria-label="Facebook"> | |
<i class="fab fa-facebook-f"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors" aria-label="Twitter"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors" aria-label="Instagram"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition-colors" aria-label="YouTube"> | |
<i class="fab fa-youtube"></i> | |
</a> | |
</div> | |
</div> | |
<div> | |
<h4 class="font-bold mb-4">Quick Links</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Home</a></li> | |
<li><a href="#resources" class="text-gray-400 hover:text-white transition-colors">Resources</a></li> | |
<li><a href="#community" class="text-gray-400 hover:text-white transition-colors">Community</a></li> | |
<li><a href="#events" class="text-gray-400 hover:text-white transition-colors">Events</a></li> | |
<li><a href="#about" class="text-gray-400 hover:text-white transition-colors">About Us</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="font-bold mb-4">Support</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">FAQs</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Help Center</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Accessibility Statement</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Privacy Policy</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition-colors">Terms of Service</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="font-bold mb-4">Newsletter</h4> | |
<p class="text-gray-400 mb-4">Subscribe to get updates on new resources and events.</p> | |
<form class="flex"> | |
<input type="email" placeholder="Your email" | |
class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-900" | |
aria-label="Email address for newsletter subscription"> | |
<button type="submit" class="bg-blue-500 hover:bg-blue-600 px-4 py-2 rounded-r-lg transition-colors"> | |
<i class="fas fa-paper-plane"></i> | |
</button> | |
</form> | |
</div> | |
</div> | |
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400"> | |
<p>© 2023 AccessAbility Hub. All rights reserved.</p> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Dark Mode Toggle | |
const darkModeToggle = document.getElementById('darkModeToggle'); | |
const html = document.documentElement; | |
// Check for saved user preference or use system preference | |
if (localStorage.getItem('darkMode') === 'true' || | |
(!localStorage.getItem('darkMode') && window.matchMedia('(prefers-color-scheme: dark)').matches)) { | |
html.classList.add('dark'); | |
darkModeToggle.innerHTML = '<i class="fas fa-sun"></i>'; | |
} | |
darkModeToggle.addEventListener('click', () => { | |
html.classList.toggle('dark'); | |
if (html.classList.contains('dark')) { | |
darkModeToggle.innerHTML = '<i class="fas fa-sun"></i>'; | |
localStorage.setItem('darkMode', 'true'); | |
} else { | |
darkModeToggle.innerHTML = '<i class="fas fa-moon"></i>'; | |
localStorage.setItem('darkMode', 'false'); | |
} | |
}); | |
// Mobile Menu Toggle | |
const mobileMenuToggle = document.getElementById('mobileMenuToggle'); | |
const mobileMenu = document.getElementById('mobileMenu'); | |
mobileMenuToggle.addEventListener('click', () => { | |
mobileMenu.classList.toggle('hidden'); | |
const icon = mobileMenuToggle.querySelector('i'); | |
if (mobileMenu.classList.contains('hidden')) { | |
icon.classList.remove('fa-times'); | |
icon.classList.add('fa-bars'); | |
} else { | |
icon.classList.remove('fa-bars'); | |
icon.classList.add('fa-times'); | |
} | |
}); | |
// Search Toggle | |
const searchToggle = document.getElementById('searchToggle'); | |
const searchBar = document.getElementById('searchBar'); | |
searchToggle.addEventListener('click', () => { | |
searchBar.classList.toggle('hidden'); | |
}); | |
// Accessibility Toggles | |
const a11yToggles = document.querySelectorAll('[data-a11y-toggle]'); | |
a11yToggles.forEach(toggle => { | |
toggle.addEventListener('click', () => { | |
const target = toggle.getAttribute('data-a11y-toggle'); | |
const targetElement = document.getElementById(`${target}Options`); | |
if (targetElement) { | |
targetElement.classList.toggle('active'); | |
} | |
// Implement actual accessibility features | |
switch(target) { | |
case 'fontSize': | |
// Font size toggle would be handled by the buttons in the expanded panel | |
break; | |
case 'contrast': | |
document.body.classList.toggle('high-contrast'); | |
break; | |
case 'dyslexia': | |
document.body.classList.toggle('dyslexia-font'); | |
break; | |
case 'readMode': | |
document.body.classList.toggle('read-mode'); | |
break; | |
} | |
}); | |
}); | |
// Font Size Buttons | |
const fontSizeButtons = document.querySelectorAll('[data-font-size]'); | |
fontSizeButtons.forEach(button => { | |
button.addEventListener('click', () => { | |
const size = button.getAttribute('data-font-size'); | |
document.body.className = document.body.className.replace(/\bfont-\S+/g, ''); | |
document.body.classList.add(`font-${size}`); | |
localStorage.setItem('fontSize', size); | |
}); | |
}); | |
// Check for saved font size preference | |
const savedFontSize = localStorage.getItem('fontSize'); | |
if (savedFontSize) { | |
document.body.classList.add(`font-${savedFontSize}`); | |
} | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function(e) { | |
e.preventDefault(); | |
const targetId = this.getAttribute('href'); | |
if (targetId === '#') return; | |
const targetElement = document.querySelector(targetId); | |
if (targetElement) { | |
targetElement.scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
// Update URL without jumping | |
if (history.pushState) { | |
history.pushState(null, null, targetId); | |
} else { | |
window.location.hash = targetId; | |
} | |
} | |
}); | |
}); | |
// Close mobile menu when clicking on a link | |
document.querySelectorAll('#mobileMenu a').forEach(link => { | |
link.addEventListener('click', () => { | |
mobileMenu.classList.add('hidden'); | |
const icon = mobileMenuToggle.querySelector('i'); | |
icon.classList.remove('fa-times'); | |
icon.classList.add('fa-bars'); | |
}); | |
}); | |
</script> | |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=MyAbiliyAI/accessability-hub" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |