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