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