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