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