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