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