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