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