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