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