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