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