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