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