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