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