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