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