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