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