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