Add favicon images and web manifest for site branding
- Added favicon-16x16.png, favicon-32x32.png, and favicon.ico to enhance site identity across platforms. - Introduced site.webmanifest to define application metadata, including icons and color themes for a better user experience on mobile devices.
This commit is contained in:
BIN
data/html/android-chrome-192x192.png
Normal file
BIN
data/html/android-chrome-192x192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 63 KiB |
BIN
data/html/android-chrome-512x512.png
Normal file
BIN
data/html/android-chrome-512x512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 347 KiB |
BIN
data/html/apple-touch-icon.png
Normal file
BIN
data/html/apple-touch-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 56 KiB |
BIN
data/html/favicon-16x16.png
Normal file
BIN
data/html/favicon-16x16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 844 B |
BIN
data/html/favicon-32x32.png
Normal file
BIN
data/html/favicon-32x32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
BIN
data/html/favicon.ico
Normal file
BIN
data/html/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 866 B |
@@ -6,6 +6,12 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Image Upload</title>
|
<title>Image Upload</title>
|
||||||
<link rel="stylesheet" href="style.css" />
|
<link rel="stylesheet" href="style.css" />
|
||||||
|
<link rel="icon" href="/favicon.ico" sizes="any">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||||
|
<link rel="manifest" href="/site.webmanifest">
|
||||||
|
<meta name="theme-color" content="#000000">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
19
data/html/site.webmanifest
Normal file
19
data/html/site.webmanifest
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"name": "Black Hole Share",
|
||||||
|
"short_name": "BHS",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"theme_color": "#000000",
|
||||||
|
"background_color": "#000000",
|
||||||
|
"display": "standalone"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user