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