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