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