SlideShare uma empresa Scribd logo
1 de 7
Baixar para ler offline
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.

Mais conteúdo relacionado

Semelhante a Website Shortcut Graphics Recommendations

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.0Andrea Verlicchi
 
Show & tell - 16 pixels of pain
Show & tell - 16 pixels of painShow & tell - 16 pixels of pain
Show & tell - 16 pixels of painDan Dineen
 
Responsive design and retina displays
Responsive design and retina displaysResponsive design and retina displays
Responsive design and retina displaysEli McMakin
 
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 Appsbrucelawson
 
Designing for mobile
Designing for mobileDesigning for mobile
Designing for mobileDee Sadler
 
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 WorldJoe Pairman
 
Proactive Responsive Design
Proactive Responsive DesignProactive Responsive Design
Proactive Responsive DesignNathan Smith
 
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 3Wahyu Putra
 
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 SiddiquiMuhammad Ehtisham Siddiqui
 
Pinkoi Mobile Web
Pinkoi Mobile WebPinkoi Mobile Web
Pinkoi Mobile Webmikeleeme
 
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 SolutionsRapidValue
 
Html viva questions
Html viva questionsHtml viva questions
Html viva questionsVipul Naik
 
Responsive website design
Responsive website designResponsive website design
Responsive website designsvaithiyalingam
 
"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...Yandex
 
An Introduction to Responsive Design
An Introduction to Responsive DesignAn Introduction to Responsive Design
An Introduction to Responsive DesignValtech UK
 
PSD to HTML Conversion
PSD to HTML ConversionPSD to HTML Conversion
PSD to HTML ConversionDarryl Sherman
 
iOS 8 and iPhone 6 for web developers and designers
iOS 8 and iPhone 6 for web developers and designersiOS 8 and iPhone 6 for web developers and designers
iOS 8 and iPhone 6 for web developers and designersZhi Zhong
 

Semelhante a Website Shortcut Graphics Recommendations (20)

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
 
iOS 8 and iPhone 6 for web developers and designers
iOS 8 and iPhone 6 for web developers and designersiOS 8 and iPhone 6 for web developers and designers
iOS 8 and iPhone 6 for web developers and designers
 

Último

Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITMgdsc13
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Sonam Pathan
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts servicevipmodelshub1
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一Fs
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Lucknow
 
Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhimiss dipika
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Dana Luther
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Paul Calvano
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作ys8omjxb
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Excelmac1
 
Complet Documnetation for Smart Assistant Application for Disabled Person
Complet Documnetation   for Smart Assistant Application for Disabled PersonComplet Documnetation   for Smart Assistant Application for Disabled Person
Complet Documnetation for Smart Assistant Application for Disabled Personfurqan222004
 
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一3sw2qly1
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一z xss
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一Fs
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Sonam Pathan
 

Último (20)

Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
 
Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhi
 
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...
 
Complet Documnetation for Smart Assistant Application for Disabled Person
Complet Documnetation   for Smart Assistant Application for Disabled PersonComplet Documnetation   for Smart Assistant Application for Disabled Person
Complet Documnetation for Smart Assistant Application for Disabled Person
 
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
 

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.