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