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