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