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