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