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