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