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