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