A Pen by Matt Daniel Brown on CodePen.
Forked from matt-daniel-brown/google-favicons-api.markdown
Created
December 13, 2021 08:31
-
-
Save HereOrCode/bd57c3e4ddd65c119f1725585b47b365 to your computer and use it in GitHub Desktop.
Google favicons API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Google API --> | |
<div class="icons"> | |
<span>Google API</span> | |
<img src="https://s2.googleusercontent.com/s2/favicons?domain=twitter.com&sz=32" alt="Twitter Icon"/> | |
<img src="https://s2.googleusercontent.com/s2/favicons?domain=google.com&sz=32" alt="Goolgle Icon"/> | |
<img src="https://s2.googleusercontent.com/s2/favicons?domain=facebook.com&sz=32" alt="Facebook Icon"/> | |
<img src="https://s2.googleusercontent.com/s2/favicons?domain=mailbrew.com&sz=32" alt="Mailbrew Icon"/> | |
<img src="https://s2.googleusercontent.com/s2/favicons?domain=getmakerlog.com&sz=32" alt="Makerlog Icon"/> | |
<img src="https://s2.googleusercontent.com/s2/favicons?domain=leavemealone.app&sz=32" alt="Leave Me Alone Icon"/> | |
</div> | |
<br /> | |
<!-- DDG API --> | |
<div class="icons"> | |
<span>DDG API</span> | |
<img src="https://icons.duckduckgo.com/ip3/twitter.com.ico" alt="Twitter Icon"/> | |
<img src="https://icons.duckduckgo.com/ip3/google.com.ico" alt="Goolgle Icon"/> | |
<img src="https://icons.duckduckgo.com/ip3/facebook.com.ico" alt="Facebook Icon"/> | |
<img src="https://icons.duckduckgo.com/ip3/mailbrew.com.ico" alt="Mailbrew Icon"/> | |
<img src="https://icons.duckduckgo.com/ip3/getmakerlog.com.ico" alt="Makerlog Icon"/> | |
<img src="https://icons.duckduckgo.com/ip3/leavemealone.app.ico" alt="Leave Me Alone Icon"/> | |
</div> | |
<br /> | |
<!-- unavatar API --> | |
<div class="icons"> | |
<span>Unavatar API</span> | |
<img src="https://unavatar.now.sh/twitter.com" alt="Twitter Icon"/> | |
<img src="https://unavatar.now.sh/google.com" alt="Goolgle Icon"/> | |
<img src="https://unavatar.now.sh/facebook.com" alt="Facebook Icon"/> | |
<img src="https://unavatar.now.sh/mailbrew.com" alt="Mailbrew Icon"/> | |
<img src="https://unavatar.now.sh/getmakerlog.com" alt="Makerlog Icon"/> | |
<img src="https://unavatar.now.sh/leavemealone.app" alt="Leave Me Alone Icon"/> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body, html { | |
width: 100%; | |
text-align: center; | |
} | |
img { | |
margin: 1em auto; | |
display: inline-block; | |
width: 32px; | |
} | |
.icons { | |
width: 500px; | |
display: flex; | |
flex-direction: row; | |
justify-content: flex-start; | |
align-items: center; | |
margin: 0 auto; | |
span { | |
width: 200px; | |
text-align: right; | |
padding-right: 50px; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.0.0/modern-normalize.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment