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