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