Use on the webTotal Use [ 3424 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/f57dd1c62fccb6b8abf5be613ba59187?family=Cheap+Pizza" 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/f57dd1c62fccb6b8abf5be613ba59187?family=Cheap+Pizza);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Cheap Pizza";
src: url("https://db.onlinewebfonts.com/t/f57dd1c62fccb6b8abf5be613ba59187.eot");
src: url("https://db.onlinewebfonts.com/t/f57dd1c62fccb6b8abf5be613ba59187.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f57dd1c62fccb6b8abf5be613ba59187.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f57dd1c62fccb6b8abf5be613ba59187.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f57dd1c62fccb6b8abf5be613ba59187.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f57dd1c62fccb6b8abf5be613ba59187.svg#Cheap Pizza")format("svg");
}
2CSS rules to specify fonts
font-family: "Cheap Pizza";