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