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