add favicon sizes example

This commit is contained in:
Alexander Popov 2021-11-21 00:39:08 +03:00
parent 016b5c4268
commit 92189d5aa1
Signed by: iiiypuk
GPG Key ID: 398FC73478D97286
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,4 @@
# HTML
- [favicons.html](favicons.html)
- [humans.txt](humans.txt)

9
HTML/favicons.html Normal file
View File

@ -0,0 +1,9 @@
<head>
<!-- Icons -->
<link rel="apple-touch-icon" sizes="180×180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="120×120" href="favicon-120x120.png">
<link rel="icon" type="image/png" sizes="32×32" href="favicon-32×32.png">
<link rel="icon" type="image/png" sizes="16×16" href="favicon-16×16.png">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="manifest" href="site.webmanifest">
</head>