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