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