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