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