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