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