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