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