Call the 24/7 ScamShield Helpline at 1799 if you are unsure if something is a scam.
Complete guide to HSA favicons and logos. Learn how to use each file for optimal display across all platforms and devices.
All HSA favicons and logos are located in /hsa/. These files ensure consistent branding across web browsers, mobile devices, and Progressive Web Apps.
16×16 and 32×32 PNG files
Apple Touch & Android Chrome icons
PNG and SVG logo files
Small browser tab icon for standard displays
Automatically used by browsers for tabs and bookmarks. Link in HTML <head> for explicit declaration.
/hsa/favicon-16x16.pngStandard browser tab icon for high-resolution displays
Primary favicon for modern browsers. Link in HTML <head> with sizes="32x32" attribute.
/hsa/favicon-32x32.pngiOS home screen icon when users save website to device
Link in HTML <head> with rel="apple-touch-icon". iOS automatically adds rounded corners.
/hsa/apple-touch-icon.png
Android home screen icon and PWA launcher
Referenced in site.webmanifest. Used when users install as Progressive Web App.
/hsa/android-chrome-192x192.png
High-resolution Android splash screen and app icon
Referenced in site.webmanifest. Provides crisp display on high-DPI Android devices.
/hsa/android-chrome-512x512.png
Full HSA logo for general use in documentation and UI
Use in headers, footers, documentation pages, or anywhere the full HSA branding is needed. Import with Next.js Image component for optimization.
/hsa/hsa-logo.pngVector HSA logo for scalable, high-quality rendering
Use for responsive designs, large displays, or print materials. Scales perfectly to any size without quality loss.
/hsa/logo-hsa.svg// app/layout.tsx
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'HSA Self Help Tools',
description: 'Health Sciences Authority Self Help Tools Platform',
icons: {
icon: [
{ url: '/hsa/favicon-16x16.png', sizes: '16x16', type: 'image/png' },
{ url: '/hsa/favicon-32x32.png', sizes: '32x32', type: 'image/png' },
],
apple: [
{ url: '/hsa/apple-touch-icon.png', sizes: '180x180', type: 'image/png' },
],
},
};<!-- Favicons -->
<link rel="icon" type="image/png" sizes="16x16" href="/hsa/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/hsa/favicon-32x32.png">
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" sizes="180x180" href="/hsa/apple-touch-icon.png">
<!-- Web App Manifest (for Android) -->
<link rel="manifest" href="/site.webmanifest">import Image from 'next/image';
// PNG Logo
<Image
src="/hsa/hsa-logo.png"
alt="HSA Logo"
width={200}
height={60}
priority
/>
// SVG Logo (scalable)
<Image
src="/hsa/logo-hsa.svg"
alt="HSA Logo"
width={300}
height={90}
priority
/>All favicon and logo files are stored in the /hsa/ directory and are publicly accessible at /hsa/filename.
Directory Structure:
public/
└── hsa/
├── favicon-16x16.png
├── favicon-32x32.png
├── apple-touch-icon.png
├── android-chrome-192x192.png
├── android-chrome-512x512.png
├── hsa-logo.png
└── logo-hsa.svgNeed help with favicon implementation? Visit our support page