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