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