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