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