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