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