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