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