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