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