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