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