SlideShare una empresa de Scribd logo
1 de 7
Descargar para leer sin conexión
1 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC.
Website Shortcut Graphics
This document contains graphics-related Meta Tag recommendations for your HTML Web Page.
They will optimize the appearance of the shortcut that is added to the Home Screen on iPhone or Android
mobile devices.
Mobile Devices
Android
HTML-specified files
(Requires the mobile-web-capable attribute – for now, the apple-mobile-web-capable is also accepted)
192x192 Android recommended size [ ] required
128x128 Android legacy size [ ] optional
theme-color Requires Android 5.0 color:#________ [ ]
Or
Web App Manifest (manifest.json)
36x36 launcher icon 0.75 density ldpi [ ] recommended
48x48 launcher icon 1.0 density mdpi [ ] recommended
72x72 launcher icon 1.5 density hdpi [ ] recommended
96x96 launcher icon 2.0 density xhdpi [ ] recommended
144x144 launcher icon 3.0 density xxhdpi [ ] recommended
192x192 launcher icon 4.0 density xxxhdpi [ ] required
256x256 launcher icon 4.0 density xxxhdpi [ ] recommended
512x512 launcher icon 4.0 density xxxhdpi [ ] recommended
theme-color Requires Android 5.0 color:#________ [ ] optional
References: developer.chrome.com/extensions/manifest/icons
developers.google.com/web/fundamentals/design-and-ux/browser-customization/
developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/icons
iPhone apple-touch-icon apple-touch-icon-precomposed*
180x180 iPhone 6 Plus - App Icon, Web Clip Icon [ ] N/A recommended
120x120 iPhone 6S, 6, 5, 4S (@2x) App Icon, Web Clip Icon [ ] [ ]
114x114 pre-iOS7 iPhone 6S, 6, 5, 4S App Icon, Web Clip Icon N/A [ ]
80x80 iPhone 4S Spotlight Search results [ ] [ ]
60x60* (formerly 57x57) apple-touch-icon.png in root folder unreferenced [ ] recommended
57x57 non-Retina (@1x) iPhone, iPod Touch [ ] [ ]
iPad apple-touch-icon apple-touch-icon-precomposed*
167x167 iPad Pro (@2x) [ ] N/A
152x152 iPad 2 and iPad mini App Icon (@2x), Web Clip Icon [ ] [ ]
144x144 pre-iOS7 - iPad 2 and iPad mini App Icon (@2x), N/A [ ]
Web Clip Icon
76x76 pre-iOS7 iPad 2 and iPad mini App Icon (@1x), [ ] [ ]
Web Clip Icon
72x72 pre-iOS7 iPad mini and the first- and N/A [ ]
second-generation iPad (@1x)
60x60* iPad 2 and iPad mini (@1x) Spotlight Search results [ ] [ ] recommended
2 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC.
*Safari on iOS 7 doesn’t add effects to icons. Older versions of Safari will not add effects for icon files named with the -
precomposed.png suffix. For all images and icons, the PNG format is recommended. You should avoid using
interlaced PNGs. The standard bit depth for icons and images is 24 bits (True Color), for Apple Icons only.
*The icon that is the most appropriate size for the device is used. If no sizes attribute is set, the element’s size
defaults to 60 x 60. If there is no icon that matches the recommended size for the device, the smallest icon
larger than the recommended size is used. If there are no icons larger than the recommended size, the largest
icon is used.
If no icons are specified using a link element, the website root directory is searched for icons with the apple-
touch-icon... prefix. For example, if the appropriate icon size for the device is 60 x 60, the system searches for
filenames in the following order:
1. apple-touch-icon-76x76.png
2. apple-touch-icon.png
References:
developer.apple.com/library/ios/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/Confi
guringWebApplications.html
developer.apple.com/library/safari/documentation/UserExperience/Conceptual/MobileHIG/IconMatrix.html#//apple_ref/doc/uid/TP
40006556-CH27
Favicons
Use of .ico type of file as source of favicon references [ ]
16x16 256 color [ ] True Color [ ]
24x24 256 color [ ] True Color [ ]
32x32 256 color [ ] True Color [ ]
48x48 True Color [ ]
64x64 True Color [ ]
Copy of favicon.ico stored in root folder [ ]
Use of icon and shortcut icon href html lines in web pages [ ]
Reference: firstbutton.com/source/favicon.pdf
Windows Tiles
Windows 8 graphics and html references
144x144 [ ]
Tile background color#______ [ ]
Windows 8.1/10 graphics and html references
128x128 (Small 70x70 spec) [ ]
270x270 (Medium 150x150 spec) [ ]
558x270 (Wide 310x150 spec) [ ]
558x558 (Large 310x310 spec) [ ]
browserconfig.xml File [ ]
Or
HTML Lines: [ ]
3 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC.
Notes from Microsoft, regarding Windows 10 Tile Graphic files:
Tile size Standard tile dimensions Minimum image size Recommended image size
Small 70 x 70 56 x 56 128 x 128
Medium 150 x 150 120 x 120 270 x 270
Wide 310 x 150 248 x 120 558 x 270
Large 310 x 310 248 x 248 558 x 558
(Their reasoning for the large Recommended image size: “To cover a wide range of devices, use an image 1.8
times the standard tile size so the image can be scaled up or down as needed.”)
The maximum size for all tiles is 1024 x 1024.
Reference: docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/samples/dn455106(v=vs.85)
Opera
228x228 [ ] optional
Do not include the 228x228 Icon size, if Android graphics are being declared with html lines – it will supersede
the 192x192 Android size, since Android automatically uses the largest available Icon size if no Web App
Manifest is being used.
References: dev.opera.com/blog/introducing-coast-by-opera/
dev.opera.com/articles/opera-coast/
4 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC.
HTML sections and graphics to add:
Android basic
<meta name="viewport" content="width=device-width"/>
<meta name="mobile-web-capable" content="yes"/>
<link rel="icon" sizes="192x192" href="http://[yourwebsite]/[192x192 filename.png"/>
Or complete (for Chrome 39 or later)
In index.html or your homepage:
<meta name="viewport" content="width=device-width"/>
<meta name="mobile-web-capable" content="yes"/>
<link rel="manifest" href="manifest.json"/>
In manifest.json (replacing filename.png with your individual image files):
{
"name": "Web Site Title Goes Here",
"icons": [
{
"src": "http://[yourwebsite]/[36x36 filename.png]”,
"sizes": "36x36",
"type": "image/png"
},
{
"src": "http://[yourwebsite]/[48x48 filename.png]”,
"sizes": "48x48",
"type": "image/png"
},
{
"src": "http://[yourwebsite]/[72x72 filename.png]”,
"sizes": "72x72",
"type": "image/png"
},
{
"src": "http://[yourwebsite]/[96x96 filename.png]”,
"sizes": "96x96",
"type": "image/png"
},
{
"src": " http://[yourwebsite]/[144x144 filename.png]",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "http://[yourwebsite]/[192x192 filename.png]”,
"sizes": "192x192",
"type": "image/png"
},
{
5 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC.
"src": "http://[yourwebsite]/[256x256 filename.png]”,
"sizes": "256x256",
"type": "image/png"
},
{
"src": "http://[yourwebsite]/[512x512 filename.png]”,
"sizes": "512x512",
"type": "image/png"
}
],
"start_url": "index.html",
"display": "standalone",
"orientation": "landscape"
}
iPhone/iPad
basic
<meta name="apple-mobile-web-capable" content="yes"/>
<link rel="apple-touch-icon" sizes="180x180" href="http://[yourwebsite]/180by180.png"/>
<link rel="apple-touch-icon" sizes="60x60" href="http://[yourwebsite]/60by60.png"/>
<link rel="apple-touch-icon" href="http://[yourwebsite]/apple-touch-icon.png"/>*
*Unreferenced apple-touch-icon.png file is recommended to be 60x60. The legacy size was 57x57.
Or complete
<meta name="apple-mobile-web-capable" content="yes"/>
<link rel="apple-touch-icon" sizes="180x180" href="http://[yourwebsite]/180by180.png"/>
<link rel="apple-touch-icon" sizes="167x167" href="http://[yourwebsite]/167by167.png"/>
<link rel="apple-touch-icon" sizes="152x152" href="http://[yourwebsite]/152by152.png"/>
<link rel="apple-touch-icon" sizes="120x120" href="http://[yourwebsite]/120by120.png"/>
<link rel="apple-touch-icon" sizes="114x114" href="http://[yourwebsite]/114by114.png"/>
<link rel="apple-touch-icon" sizes="80x80" href="http://[yourwebsite]/80by80.png"/>
<link rel="apple-touch-icon" sizes="76x76" href="http://[yourwebsite]/76by76.png"/>
<link rel="apple-touch-icon" sizes="60x60" href=" http://[yourwebsite]/60by60.png"/>
<link rel="apple-touch-icon" href=" http://[yourwebsite]/apple-touch-icon.png"/>*
*Unreferenced apple-touch-icon.png file is recommended to be 60x60. The legacy size is 57x57.
Microsoft Tiles
<meta name="msapplication-tooltip" content="Your Website Name"/>
<meta name="msapplication-starturl" content="./"/>
<meta name="msapplication-TileImage" content=" http://[yourwebsite]/144x144.png"/>
<meta name="msapplication-TileColor" content="#000000"/>
<meta name="msapplication-square70x70logo" content="http://[yourwebsite]/128x128.png"/>
<meta name="msapplication-square150x150logo" content="http://[yourwebsite]/270x270.png"/>
<meta name="msapplication-wide310x150logo" content="http://[yourwebsite]/558x270.png"/>
<meta name="msapplication-square310x310logo" content="http://[yourwebsite]/558x558.png"/>
6 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC.
Example of combined Android, iPhone/iPad, and Microsoft Tiles sections in Web Page:
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="robots" content="index,follow"/>
<meta name="description" content="[description of website]"/>
<title>[Website Title]</title>
<!--- meta tags for author, copyright, keywords would go here -->
<meta name="msapplication-config" content="browserconfig.xml"/>
<link rel="manifest" href="http://[your website]/manifest.json"/>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"/>
<meta name="mobile-web-capable" content="yes"/>
<meta name="apple-mobile-web-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<meta name="application-name" content="Your Website Name"/>
<meta name="msapplication-tooltip" content="Your Website Name"/>
<meta name="msapplication-starturl" content="./"/>
<meta name="msapplication-TileImage" content=" http://[yourwebsite]/144x144.png"/>
<meta name="msapplication-TileColor" content="#000000"/>
<meta name="msapplication-square70x70logo" content="http://[yourwebsite]/128x128.png"/>
<meta name="msapplication-square150x150logo" content=" http://[yourwebsite]/270x270.png"/>
<meta name="msapplication-wide310x150logo" content="http://[yourwebsite]/558x270.png"/>
<meta name="msapplication-square310x310logo" content="http://[yourwebsite]/558x558.png"/>
<link rel="apple-touch-icon" sizes="180x180" href="http://[yourwebsite]/180by180.png"/>
<link rel="apple-touch-icon" sizes="60x60" href="http://[yourwebsite]/60by60.png"/>
<link rel="apple-touch-icon" href="http://[yourwebsite]/apple-touch-icon.png"/>
<link rel="shortcut icon" href="favicon.ico"/>
<link rel="icon" href="favicon.ico"/>
<link rel="icon" sizes="192x192" href="http://[yourwebsite]/[192x192 filename.png"/>
7 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC.
Please send questions or concerns regarding this document to documents@liquiditylighthouse.com.
NO WARRANTIES. Liquidity Lighthouse, LLC expressly disclaims any warranty for the SOFTWARE PRODUCT, THE
SOFTWARE PRODUCT AND ANY RELATED DOCUMENTATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT.
Limitation of Liability
To the maximum extent permitted by applicable law, in no event shall Liquidity Lighthouse, LLC or its suppliers be liable for
any special, incidental, indirect, or consequential damages whatsoever (including, without limitation, damages for loss of
business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or
inability to use the SOFTWARE PRODUCT or the provision of or failure to provide Support Services.
By using the Installation Software, you agree not to assert any intellectual property rights, including but not limited to, claims
of trademark infringement, against Liquidity Lighthouse, LLC or its suppliers, now or in the future.
Liquidity Lighthouse, LLC
PO Box 211091
Bedford, TX 76095
FirstButton and Liquidity Lighthouse are trademarks of Liquidity Lighthouse, LLC.

Más contenido relacionado

Similar a Website Shortcut Graphics Recommendations

Responsive website design
Responsive website designResponsive website design
Responsive website design
svaithiyalingam
 

Similar a Website Shortcut Graphics Recommendations (20)

Intro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS featuresIntro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS features
 
2022.04 - CSS Day IT - Images Optimisation 4.0
2022.04 - CSS Day IT - Images Optimisation 4.02022.04 - CSS Day IT - Images Optimisation 4.0
2022.04 - CSS Day IT - Images Optimisation 4.0
 
Show & tell - 16 pixels of pain
Show & tell - 16 pixels of painShow & tell - 16 pixels of pain
Show & tell - 16 pixels of pain
 
Responsive design and retina displays
Responsive design and retina displaysResponsive design and retina displays
Responsive design and retina displays
 
Bruce Lawson: Progressive Web Apps: the future of Apps
Bruce Lawson: Progressive Web Apps: the future of AppsBruce Lawson: Progressive Web Apps: the future of Apps
Bruce Lawson: Progressive Web Apps: the future of Apps
 
Designing for mobile
Designing for mobileDesigning for mobile
Designing for mobile
 
Better DITA Graphics for a Multi-Screen World
Better DITA Graphics for a Multi-Screen WorldBetter DITA Graphics for a Multi-Screen World
Better DITA Graphics for a Multi-Screen World
 
Button Graphics
Button GraphicsButton Graphics
Button Graphics
 
Proactive Responsive Design
Proactive Responsive DesignProactive Responsive Design
Proactive Responsive Design
 
Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3
 
Building Next Generation Websites Session 7 by Muhammad Ehtisham Siddiqui
Building Next Generation  Websites Session 7 by Muhammad Ehtisham SiddiquiBuilding Next Generation  Websites Session 7 by Muhammad Ehtisham Siddiqui
Building Next Generation Websites Session 7 by Muhammad Ehtisham Siddiqui
 
Pinkoi Mobile Web
Pinkoi Mobile WebPinkoi Mobile Web
Pinkoi Mobile Web
 
Best Practices for Android UI by RapidValue Solutions
Best Practices for Android UI by RapidValue SolutionsBest Practices for Android UI by RapidValue Solutions
Best Practices for Android UI by RapidValue Solutions
 
Html viva questions
Html viva questionsHtml viva questions
Html viva questions
 
Responsive website design
Responsive website designResponsive website design
Responsive website design
 
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin..."Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
 
An Introduction to Responsive Design
An Introduction to Responsive DesignAn Introduction to Responsive Design
An Introduction to Responsive Design
 
Material design
Material designMaterial design
Material design
 
PSD to HTML Conversion
PSD to HTML ConversionPSD to HTML Conversion
PSD to HTML Conversion
 
Web designer
Web designerWeb designer
Web designer
 

Último

一比一原版(Wintec毕业证书)新西兰怀卡托理工学院毕业证原件一模一样
一比一原版(Wintec毕业证书)新西兰怀卡托理工学院毕业证原件一模一样一比一原版(Wintec毕业证书)新西兰怀卡托理工学院毕业证原件一模一样
一比一原版(Wintec毕业证书)新西兰怀卡托理工学院毕业证原件一模一样
AS
 
一比一定制(Temasek毕业证书)新加坡淡马锡理工学院毕业证学位证书
一比一定制(Temasek毕业证书)新加坡淡马锡理工学院毕业证学位证书一比一定制(Temasek毕业证书)新加坡淡马锡理工学院毕业证学位证书
一比一定制(Temasek毕业证书)新加坡淡马锡理工学院毕业证学位证书
B
 
一比一原版(UWE毕业证书)西英格兰大学毕业证原件一模一样
一比一原版(UWE毕业证书)西英格兰大学毕业证原件一模一样一比一原版(UWE毕业证书)西英格兰大学毕业证原件一模一样
一比一原版(UWE毕业证书)西英格兰大学毕业证原件一模一样
Fi
 
一比一原版(毕业证书)新加坡南洋理工学院毕业证原件一模一样
一比一原版(毕业证书)新加坡南洋理工学院毕业证原件一模一样一比一原版(毕业证书)新加坡南洋理工学院毕业证原件一模一样
一比一原版(毕业证书)新加坡南洋理工学院毕业证原件一模一样
AS
 
原版定制英国赫瑞瓦特大学毕业证原件一模一样
原版定制英国赫瑞瓦特大学毕业证原件一模一样原版定制英国赫瑞瓦特大学毕业证原件一模一样
原版定制英国赫瑞瓦特大学毕业证原件一模一样
AS
 
一比一定制波士顿学院毕业证学位证书
一比一定制波士顿学院毕业证学位证书一比一定制波士顿学院毕业证学位证书
一比一定制波士顿学院毕业证学位证书
A
 
一比一原版(PSU毕业证书)美国宾州州立大学毕业证如何办理
一比一原版(PSU毕业证书)美国宾州州立大学毕业证如何办理一比一原版(PSU毕业证书)美国宾州州立大学毕业证如何办理
一比一原版(PSU毕业证书)美国宾州州立大学毕业证如何办理
Fir
 
一比一原版英国格林多大学毕业证如何办理
一比一原版英国格林多大学毕业证如何办理一比一原版英国格林多大学毕业证如何办理
一比一原版英国格林多大学毕业证如何办理
AS
 

Último (20)

SOC Analyst Guide For Beginners SOC analysts work as members of a managed sec...
SOC Analyst Guide For Beginners SOC analysts work as members of a managed sec...SOC Analyst Guide For Beginners SOC analysts work as members of a managed sec...
SOC Analyst Guide For Beginners SOC analysts work as members of a managed sec...
 
一比一原版(Wintec毕业证书)新西兰怀卡托理工学院毕业证原件一模一样
一比一原版(Wintec毕业证书)新西兰怀卡托理工学院毕业证原件一模一样一比一原版(Wintec毕业证书)新西兰怀卡托理工学院毕业证原件一模一样
一比一原版(Wintec毕业证书)新西兰怀卡托理工学院毕业证原件一模一样
 
Dan Quinn Commanders Feather Dad Hat Hoodie
Dan Quinn Commanders Feather Dad Hat HoodieDan Quinn Commanders Feather Dad Hat Hoodie
Dan Quinn Commanders Feather Dad Hat Hoodie
 
HUMANIZE YOUR BRAND - FREE E-WORKBOOK Download Now
HUMANIZE YOUR BRAND - FREE E-WORKBOOK Download NowHUMANIZE YOUR BRAND - FREE E-WORKBOOK Download Now
HUMANIZE YOUR BRAND - FREE E-WORKBOOK Download Now
 
一比一定制(Temasek毕业证书)新加坡淡马锡理工学院毕业证学位证书
一比一定制(Temasek毕业证书)新加坡淡马锡理工学院毕业证学位证书一比一定制(Temasek毕业证书)新加坡淡马锡理工学院毕业证学位证书
一比一定制(Temasek毕业证书)新加坡淡马锡理工学院毕业证学位证书
 
一比一原版(UWE毕业证书)西英格兰大学毕业证原件一模一样
一比一原版(UWE毕业证书)西英格兰大学毕业证原件一模一样一比一原版(UWE毕业证书)西英格兰大学毕业证原件一模一样
一比一原版(UWE毕业证书)西英格兰大学毕业证原件一模一样
 
Reggie miller choke t shirtsReggie miller choke t shirts
Reggie miller choke t shirtsReggie miller choke t shirtsReggie miller choke t shirtsReggie miller choke t shirts
Reggie miller choke t shirtsReggie miller choke t shirts
 
一比一原版(毕业证书)新加坡南洋理工学院毕业证原件一模一样
一比一原版(毕业证书)新加坡南洋理工学院毕业证原件一模一样一比一原版(毕业证书)新加坡南洋理工学院毕业证原件一模一样
一比一原版(毕业证书)新加坡南洋理工学院毕业证原件一模一样
 
I’ll See Y’All Motherfuckers In Game 7 Shirt
I’ll See Y’All Motherfuckers In Game 7 ShirtI’ll See Y’All Motherfuckers In Game 7 Shirt
I’ll See Y’All Motherfuckers In Game 7 Shirt
 
原版定制英国赫瑞瓦特大学毕业证原件一模一样
原版定制英国赫瑞瓦特大学毕业证原件一模一样原版定制英国赫瑞瓦特大学毕业证原件一模一样
原版定制英国赫瑞瓦特大学毕业证原件一模一样
 
Free on Wednesdays T Shirts Free on Wednesdays Sweatshirts
Free on Wednesdays T Shirts Free on Wednesdays SweatshirtsFree on Wednesdays T Shirts Free on Wednesdays Sweatshirts
Free on Wednesdays T Shirts Free on Wednesdays Sweatshirts
 
一比一定制波士顿学院毕业证学位证书
一比一定制波士顿学院毕业证学位证书一比一定制波士顿学院毕业证学位证书
一比一定制波士顿学院毕业证学位证书
 
Beyond Inbound: Unlocking the Secrets of API Egress Traffic Management
Beyond Inbound: Unlocking the Secrets of API Egress Traffic ManagementBeyond Inbound: Unlocking the Secrets of API Egress Traffic Management
Beyond Inbound: Unlocking the Secrets of API Egress Traffic Management
 
Discovering OfficialUSA.com Your Go-To Resource.pdf
Discovering OfficialUSA.com Your Go-To Resource.pdfDiscovering OfficialUSA.com Your Go-To Resource.pdf
Discovering OfficialUSA.com Your Go-To Resource.pdf
 
一比一原版(PSU毕业证书)美国宾州州立大学毕业证如何办理
一比一原版(PSU毕业证书)美国宾州州立大学毕业证如何办理一比一原版(PSU毕业证书)美国宾州州立大学毕业证如何办理
一比一原版(PSU毕业证书)美国宾州州立大学毕业证如何办理
 
TORTOGEL TELAH MENJADI SALAH SATU PLATFORM PERMAINAN PALING FAVORIT.
TORTOGEL TELAH MENJADI SALAH SATU PLATFORM PERMAINAN PALING FAVORIT.TORTOGEL TELAH MENJADI SALAH SATU PLATFORM PERMAINAN PALING FAVORIT.
TORTOGEL TELAH MENJADI SALAH SATU PLATFORM PERMAINAN PALING FAVORIT.
 
Lowongan Kerja LC Yogyakarta Terbaru 085746015303
Lowongan Kerja LC Yogyakarta Terbaru 085746015303Lowongan Kerja LC Yogyakarta Terbaru 085746015303
Lowongan Kerja LC Yogyakarta Terbaru 085746015303
 
Thank You Luv I’ll Never Walk Alone Again T shirts
Thank You Luv I’ll Never Walk Alone Again T shirtsThank You Luv I’ll Never Walk Alone Again T shirts
Thank You Luv I’ll Never Walk Alone Again T shirts
 
Registry Data Accuracy Improvements, presented by Chimi Dorji at SANOG 41 / I...
Registry Data Accuracy Improvements, presented by Chimi Dorji at SANOG 41 / I...Registry Data Accuracy Improvements, presented by Chimi Dorji at SANOG 41 / I...
Registry Data Accuracy Improvements, presented by Chimi Dorji at SANOG 41 / I...
 
一比一原版英国格林多大学毕业证如何办理
一比一原版英国格林多大学毕业证如何办理一比一原版英国格林多大学毕业证如何办理
一比一原版英国格林多大学毕业证如何办理
 

Website Shortcut Graphics Recommendations

  • 1. 1 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC. Website Shortcut Graphics This document contains graphics-related Meta Tag recommendations for your HTML Web Page. They will optimize the appearance of the shortcut that is added to the Home Screen on iPhone or Android mobile devices. Mobile Devices Android HTML-specified files (Requires the mobile-web-capable attribute – for now, the apple-mobile-web-capable is also accepted) 192x192 Android recommended size [ ] required 128x128 Android legacy size [ ] optional theme-color Requires Android 5.0 color:#________ [ ] Or Web App Manifest (manifest.json) 36x36 launcher icon 0.75 density ldpi [ ] recommended 48x48 launcher icon 1.0 density mdpi [ ] recommended 72x72 launcher icon 1.5 density hdpi [ ] recommended 96x96 launcher icon 2.0 density xhdpi [ ] recommended 144x144 launcher icon 3.0 density xxhdpi [ ] recommended 192x192 launcher icon 4.0 density xxxhdpi [ ] required 256x256 launcher icon 4.0 density xxxhdpi [ ] recommended 512x512 launcher icon 4.0 density xxxhdpi [ ] recommended theme-color Requires Android 5.0 color:#________ [ ] optional References: developer.chrome.com/extensions/manifest/icons developers.google.com/web/fundamentals/design-and-ux/browser-customization/ developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/icons iPhone apple-touch-icon apple-touch-icon-precomposed* 180x180 iPhone 6 Plus - App Icon, Web Clip Icon [ ] N/A recommended 120x120 iPhone 6S, 6, 5, 4S (@2x) App Icon, Web Clip Icon [ ] [ ] 114x114 pre-iOS7 iPhone 6S, 6, 5, 4S App Icon, Web Clip Icon N/A [ ] 80x80 iPhone 4S Spotlight Search results [ ] [ ] 60x60* (formerly 57x57) apple-touch-icon.png in root folder unreferenced [ ] recommended 57x57 non-Retina (@1x) iPhone, iPod Touch [ ] [ ] iPad apple-touch-icon apple-touch-icon-precomposed* 167x167 iPad Pro (@2x) [ ] N/A 152x152 iPad 2 and iPad mini App Icon (@2x), Web Clip Icon [ ] [ ] 144x144 pre-iOS7 - iPad 2 and iPad mini App Icon (@2x), N/A [ ] Web Clip Icon 76x76 pre-iOS7 iPad 2 and iPad mini App Icon (@1x), [ ] [ ] Web Clip Icon 72x72 pre-iOS7 iPad mini and the first- and N/A [ ] second-generation iPad (@1x) 60x60* iPad 2 and iPad mini (@1x) Spotlight Search results [ ] [ ] recommended
  • 2. 2 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC. *Safari on iOS 7 doesn’t add effects to icons. Older versions of Safari will not add effects for icon files named with the - precomposed.png suffix. For all images and icons, the PNG format is recommended. You should avoid using interlaced PNGs. The standard bit depth for icons and images is 24 bits (True Color), for Apple Icons only. *The icon that is the most appropriate size for the device is used. If no sizes attribute is set, the element’s size defaults to 60 x 60. If there is no icon that matches the recommended size for the device, the smallest icon larger than the recommended size is used. If there are no icons larger than the recommended size, the largest icon is used. If no icons are specified using a link element, the website root directory is searched for icons with the apple- touch-icon... prefix. For example, if the appropriate icon size for the device is 60 x 60, the system searches for filenames in the following order: 1. apple-touch-icon-76x76.png 2. apple-touch-icon.png References: developer.apple.com/library/ios/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/Confi guringWebApplications.html developer.apple.com/library/safari/documentation/UserExperience/Conceptual/MobileHIG/IconMatrix.html#//apple_ref/doc/uid/TP 40006556-CH27 Favicons Use of .ico type of file as source of favicon references [ ] 16x16 256 color [ ] True Color [ ] 24x24 256 color [ ] True Color [ ] 32x32 256 color [ ] True Color [ ] 48x48 True Color [ ] 64x64 True Color [ ] Copy of favicon.ico stored in root folder [ ] Use of icon and shortcut icon href html lines in web pages [ ] Reference: firstbutton.com/source/favicon.pdf Windows Tiles Windows 8 graphics and html references 144x144 [ ] Tile background color#______ [ ] Windows 8.1/10 graphics and html references 128x128 (Small 70x70 spec) [ ] 270x270 (Medium 150x150 spec) [ ] 558x270 (Wide 310x150 spec) [ ] 558x558 (Large 310x310 spec) [ ] browserconfig.xml File [ ] Or HTML Lines: [ ]
  • 3. 3 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC. Notes from Microsoft, regarding Windows 10 Tile Graphic files: Tile size Standard tile dimensions Minimum image size Recommended image size Small 70 x 70 56 x 56 128 x 128 Medium 150 x 150 120 x 120 270 x 270 Wide 310 x 150 248 x 120 558 x 270 Large 310 x 310 248 x 248 558 x 558 (Their reasoning for the large Recommended image size: “To cover a wide range of devices, use an image 1.8 times the standard tile size so the image can be scaled up or down as needed.”) The maximum size for all tiles is 1024 x 1024. Reference: docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/samples/dn455106(v=vs.85) Opera 228x228 [ ] optional Do not include the 228x228 Icon size, if Android graphics are being declared with html lines – it will supersede the 192x192 Android size, since Android automatically uses the largest available Icon size if no Web App Manifest is being used. References: dev.opera.com/blog/introducing-coast-by-opera/ dev.opera.com/articles/opera-coast/
  • 4. 4 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC. HTML sections and graphics to add: Android basic <meta name="viewport" content="width=device-width"/> <meta name="mobile-web-capable" content="yes"/> <link rel="icon" sizes="192x192" href="http://[yourwebsite]/[192x192 filename.png"/> Or complete (for Chrome 39 or later) In index.html or your homepage: <meta name="viewport" content="width=device-width"/> <meta name="mobile-web-capable" content="yes"/> <link rel="manifest" href="manifest.json"/> In manifest.json (replacing filename.png with your individual image files): { "name": "Web Site Title Goes Here", "icons": [ { "src": "http://[yourwebsite]/[36x36 filename.png]”, "sizes": "36x36", "type": "image/png" }, { "src": "http://[yourwebsite]/[48x48 filename.png]”, "sizes": "48x48", "type": "image/png" }, { "src": "http://[yourwebsite]/[72x72 filename.png]”, "sizes": "72x72", "type": "image/png" }, { "src": "http://[yourwebsite]/[96x96 filename.png]”, "sizes": "96x96", "type": "image/png" }, { "src": " http://[yourwebsite]/[144x144 filename.png]", "sizes": "144x144", "type": "image/png" }, { "src": "http://[yourwebsite]/[192x192 filename.png]”, "sizes": "192x192", "type": "image/png" }, {
  • 5. 5 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC. "src": "http://[yourwebsite]/[256x256 filename.png]”, "sizes": "256x256", "type": "image/png" }, { "src": "http://[yourwebsite]/[512x512 filename.png]”, "sizes": "512x512", "type": "image/png" } ], "start_url": "index.html", "display": "standalone", "orientation": "landscape" } iPhone/iPad basic <meta name="apple-mobile-web-capable" content="yes"/> <link rel="apple-touch-icon" sizes="180x180" href="http://[yourwebsite]/180by180.png"/> <link rel="apple-touch-icon" sizes="60x60" href="http://[yourwebsite]/60by60.png"/> <link rel="apple-touch-icon" href="http://[yourwebsite]/apple-touch-icon.png"/>* *Unreferenced apple-touch-icon.png file is recommended to be 60x60. The legacy size was 57x57. Or complete <meta name="apple-mobile-web-capable" content="yes"/> <link rel="apple-touch-icon" sizes="180x180" href="http://[yourwebsite]/180by180.png"/> <link rel="apple-touch-icon" sizes="167x167" href="http://[yourwebsite]/167by167.png"/> <link rel="apple-touch-icon" sizes="152x152" href="http://[yourwebsite]/152by152.png"/> <link rel="apple-touch-icon" sizes="120x120" href="http://[yourwebsite]/120by120.png"/> <link rel="apple-touch-icon" sizes="114x114" href="http://[yourwebsite]/114by114.png"/> <link rel="apple-touch-icon" sizes="80x80" href="http://[yourwebsite]/80by80.png"/> <link rel="apple-touch-icon" sizes="76x76" href="http://[yourwebsite]/76by76.png"/> <link rel="apple-touch-icon" sizes="60x60" href=" http://[yourwebsite]/60by60.png"/> <link rel="apple-touch-icon" href=" http://[yourwebsite]/apple-touch-icon.png"/>* *Unreferenced apple-touch-icon.png file is recommended to be 60x60. The legacy size is 57x57. Microsoft Tiles <meta name="msapplication-tooltip" content="Your Website Name"/> <meta name="msapplication-starturl" content="./"/> <meta name="msapplication-TileImage" content=" http://[yourwebsite]/144x144.png"/> <meta name="msapplication-TileColor" content="#000000"/> <meta name="msapplication-square70x70logo" content="http://[yourwebsite]/128x128.png"/> <meta name="msapplication-square150x150logo" content="http://[yourwebsite]/270x270.png"/> <meta name="msapplication-wide310x150logo" content="http://[yourwebsite]/558x270.png"/> <meta name="msapplication-square310x310logo" content="http://[yourwebsite]/558x558.png"/>
  • 6. 6 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC. Example of combined Android, iPhone/iPad, and Microsoft Tiles sections in Web Page: <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <meta name="robots" content="index,follow"/> <meta name="description" content="[description of website]"/> <title>[Website Title]</title> <!--- meta tags for author, copyright, keywords would go here --> <meta name="msapplication-config" content="browserconfig.xml"/> <link rel="manifest" href="http://[your website]/manifest.json"/> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"/> <meta name="mobile-web-capable" content="yes"/> <meta name="apple-mobile-web-capable" content="yes"/> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/> <meta name="application-name" content="Your Website Name"/> <meta name="msapplication-tooltip" content="Your Website Name"/> <meta name="msapplication-starturl" content="./"/> <meta name="msapplication-TileImage" content=" http://[yourwebsite]/144x144.png"/> <meta name="msapplication-TileColor" content="#000000"/> <meta name="msapplication-square70x70logo" content="http://[yourwebsite]/128x128.png"/> <meta name="msapplication-square150x150logo" content=" http://[yourwebsite]/270x270.png"/> <meta name="msapplication-wide310x150logo" content="http://[yourwebsite]/558x270.png"/> <meta name="msapplication-square310x310logo" content="http://[yourwebsite]/558x558.png"/> <link rel="apple-touch-icon" sizes="180x180" href="http://[yourwebsite]/180by180.png"/> <link rel="apple-touch-icon" sizes="60x60" href="http://[yourwebsite]/60by60.png"/> <link rel="apple-touch-icon" href="http://[yourwebsite]/apple-touch-icon.png"/> <link rel="shortcut icon" href="favicon.ico"/> <link rel="icon" href="favicon.ico"/> <link rel="icon" sizes="192x192" href="http://[yourwebsite]/[192x192 filename.png"/>
  • 7. 7 - © 2016, 2018-2020 copyright Liquidity Lighthouse, LLC. Please send questions or concerns regarding this document to documents@liquiditylighthouse.com. NO WARRANTIES. Liquidity Lighthouse, LLC expressly disclaims any warranty for the SOFTWARE PRODUCT, THE SOFTWARE PRODUCT AND ANY RELATED DOCUMENTATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. Limitation of Liability To the maximum extent permitted by applicable law, in no event shall Liquidity Lighthouse, LLC or its suppliers be liable for any special, incidental, indirect, or consequential damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use the SOFTWARE PRODUCT or the provision of or failure to provide Support Services. By using the Installation Software, you agree not to assert any intellectual property rights, including but not limited to, claims of trademark infringement, against Liquidity Lighthouse, LLC or its suppliers, now or in the future. Liquidity Lighthouse, LLC PO Box 211091 Bedford, TX 76095 FirstButton and Liquidity Lighthouse are trademarks of Liquidity Lighthouse, LLC.