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