Use on the webTotal Use [ 5850 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/c9527fe97fb9c5cbe72ed6c29854decd?family=Phat+guy" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/c9527fe97fb9c5cbe72ed6c29854decd?family=Phat+guy);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Phat guy";
src: url("https://db.onlinewebfonts.com/t/c9527fe97fb9c5cbe72ed6c29854decd.eot");
src: url("https://db.onlinewebfonts.com/t/c9527fe97fb9c5cbe72ed6c29854decd.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/c9527fe97fb9c5cbe72ed6c29854decd.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/c9527fe97fb9c5cbe72ed6c29854decd.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/c9527fe97fb9c5cbe72ed6c29854decd.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/c9527fe97fb9c5cbe72ed6c29854decd.svg#Phat guy")format("svg");
}
2CSS rules to specify fonts
font-family: "Phat guy";