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